mirror of https://github.com/miraclx/freyr-js
disable eslint run from super-linter
This commit is contained in:
parent
5e7f5513ba
commit
254ed84ba7
|
|
@ -1,49 +0,0 @@
|
||||||
{
|
|
||||||
"env": {
|
|
||||||
"browser": true,
|
|
||||||
"es6": true,
|
|
||||||
"node": true
|
|
||||||
},
|
|
||||||
"parserOptions": {
|
|
||||||
"sourceType": "module",
|
|
||||||
"ecmaVersion": "latest",
|
|
||||||
"ecmaFeatures": {
|
|
||||||
"modules": true
|
|
||||||
},
|
|
||||||
"requireConfigFile": false
|
|
||||||
},
|
|
||||||
"extends": [
|
|
||||||
"eslint:recommended"
|
|
||||||
],
|
|
||||||
"plugins": [
|
|
||||||
"prettier"
|
|
||||||
],
|
|
||||||
"ignorePatterns": [
|
|
||||||
"**/*.json",
|
|
||||||
// todo: #290, remove these when super-linter upgrades their eslint version
|
|
||||||
"**/cli_server.js",
|
|
||||||
"**/apple_music.js"
|
|
||||||
],
|
|
||||||
"rules": {
|
|
||||||
"prettier/prettier": [
|
|
||||||
1,
|
|
||||||
{
|
|
||||||
"trailingComma": "all",
|
|
||||||
"printWidth": 130,
|
|
||||||
"bracketSpacing": false,
|
|
||||||
"arrowParens": "avoid",
|
|
||||||
"singleQuote": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"no-empty": 0,
|
|
||||||
"no-cond-assign": 0,
|
|
||||||
"no-sparse-arrays": 0,
|
|
||||||
"no-unused-vars": [
|
|
||||||
1,
|
|
||||||
{
|
|
||||||
"argsIgnorePattern": "^_",
|
|
||||||
"varsIgnorePattern": "^_"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -608,6 +608,6 @@ jobs:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
LINTER_RULES_PATH: /
|
LINTER_RULES_PATH: /
|
||||||
# JAVASCRIPT_ES_CONFIG_FILE: .eslintrc
|
|
||||||
JSCPD_CONFIG_FILE: .github/linters/.jscpd.json
|
JSCPD_CONFIG_FILE: .github/linters/.jscpd.json
|
||||||
|
VALIDATE_JAVASCRIPT_ES: false
|
||||||
VALIDATE_JAVASCRIPT_STANDARD: false
|
VALIDATE_JAVASCRIPT_STANDARD: false
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue