chore(eslint): 🔧 use wikimedia/server for root folder eslint config

This commit is contained in:
alistair3149 2024-05-25 01:14:44 -04:00
parent 0eb9a8a7d1
commit 4762102d61
No known key found for this signature in database
2 changed files with 33 additions and 27 deletions

View file

@ -1,31 +1,6 @@
{
"root": true,
"extends": [
"wikimedia/client-es6",
"wikimedia/mediawiki"
],
"env": {
"browser": true
},
"globals": {
"exports": true
},
"rules": {
"no-implicit-globals": "warn",
"es-x/no-async-functions": "warn",
"es-x/no-object-fromentries": "warn",
"es-x/no-object-entries": "warn",
"es-x/no-object-values": "warn",
"es-x/no-array-prototype-includes": "warn",
"es-x/no-optional-chaining": "warn",
"es-x/no-nullish-coalescing-operators": "warn",
"es-x/no-rest-spread-properties": "warn",
"es-x/no-symbol-prototype-description": "warn",
"compat/compat": "warn",
"mediawiki/class-doc": "off"
},
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
}
"wikimedia/server"
]
}

31
resources/.eslintrc.json Normal file
View file

@ -0,0 +1,31 @@
{
"root": true,
"extends": [
"wikimedia/client-es6",
"wikimedia/mediawiki"
],
"env": {
"browser": true
},
"globals": {
"exports": true
},
"rules": {
"no-implicit-globals": "warn",
"es-x/no-async-functions": "warn",
"es-x/no-object-fromentries": "warn",
"es-x/no-object-entries": "warn",
"es-x/no-object-values": "warn",
"es-x/no-array-prototype-includes": "warn",
"es-x/no-optional-chaining": "warn",
"es-x/no-nullish-coalescing-operators": "warn",
"es-x/no-rest-spread-properties": "warn",
"es-x/no-symbol-prototype-description": "warn",
"compat/compat": "warn",
"mediawiki/class-doc": "off"
},
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
}
}