disable eslint run from super-linter

This commit is contained in:
Miraculous Owonubi 2022-08-06 19:23:30 +04:00
parent 5e7f5513ba
commit 254ed84ba7
No known key found for this signature in database
GPG Key ID: A9BC9FCFBEF15C92
2 changed files with 1 additions and 50 deletions

View File

@ -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": "^_"
}
]
}
}

View File

@ -608,6 +608,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
LINTER_RULES_PATH: /
# JAVASCRIPT_ES_CONFIG_FILE: .eslintrc
JSCPD_CONFIG_FILE: .github/linters/.jscpd.json
VALIDATE_JAVASCRIPT_ES: false
VALIDATE_JAVASCRIPT_STANDARD: false