mediawiki-extensions-Popups/tests/selenium/.eslintrc.json
Stephen Niedzielski deffae141c Hygiene: improve ESLint globals readability
- 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
2019-02-21 07:59:56 -07:00

15 lines
176 B
JSON

{
"extends": "../../.eslintrc.json",
"env": {
"es6": true,
"mocha": true,
"node": true
},
"globals": {
"browser": "readonly"
},
"rules": {
"no-console": 0
}
}