mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-15 03:34:03 +00:00
deffae141c
- Drop unused moment, Redux, and ReduxThunk globals. - Instead of using a confusing and deprecated boolean, specify that globals are "readable" / "writable" https://eslint.org/docs/user-guide/configuring#specifying-globals Change-Id: I711a4ea7c51c9a560f20fc28bc99bd932c7e1e25
15 lines
176 B
JSON
15 lines
176 B
JSON
{
|
|
"extends": "../../.eslintrc.json",
|
|
"env": {
|
|
"es6": true,
|
|
"mocha": true,
|
|
"node": true
|
|
},
|
|
"globals": {
|
|
"browser": "readonly"
|
|
},
|
|
"rules": {
|
|
"no-console": 0
|
|
}
|
|
}
|