mediawiki-extensions-Tabber.../.eslintrc.json

23 lines
400 B
JSON
Raw Normal View History

2021-06-21 18:35:54 +00:00
{
"root": true,
"extends": [
2021-06-21 18:47:26 +00:00
"wikimedia/client-es6",
2021-06-21 18:35:54 +00:00
"wikimedia/mediawiki"
],
"globals": {
"require": "readonly",
"module": "readonly"
},
"rules": {
"one-var": "off",
"//": [
"off",
"ResourceLoader's `packageFiles` do not require wrapping but the `module` option is only available in ES6+."
],
"no-implicit-globals": "off"
2021-06-21 18:47:26 +00:00
},
"parserOptions": {
"ecmaVersion": 11
2021-06-21 18:35:54 +00:00
}
}