mediawiki-skins-Vector/tests/.eslintrc.json
Jon Robson 87dd101a69 Consolidate and fix eslint errors, dropping ts-ignores
* Upgrade @wikimedia/types-wikimedia to allow us to drop several
@ts-ignores
* Merges eslint rules now that ES6 is default everywhere
* Runs autofix command
* Fixes various prefer-const errors

Change-Id: Iee5bcb93f10a76d80dbeec813f6387c13438263e
2023-04-11 16:56:31 -07:00

19 lines
258 B
JSON

{
"root": true,
"extends": [
"../.eslintrc.json"
],
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"es-x/no-rest-spread-properties": "off",
"es-x/no-async-functions": "off"
},
"env": {
"es6": true,
"node": true,
"jest": true
}
}