mediawiki-extensions-Thanks/.eslintrc.json
Kunal Mehta 3fa1bc1ac3 build: Set "root": true, in .eslintrc.json
This ensures that each repository's "npm test" command is fully
independent of wherever it might be in the filesystem.

Bug: T206485
Change-Id: Ibe3da677dd01ef7afa0d3afe8de974f0f11bd313
2018-12-17 18:58:52 -08:00

16 lines
171 B
JSON

{
"root": true,
"extends": "wikimedia",
"env": {
"browser": true
},
"globals": {
"mw": false,
"$": false,
"OO": false
},
"rules": {
"max-len": "off"
}
}