mediawiki-extensions-Visual.../.eslintrc.json
Kunal Mehta d10ddac1ad 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: I3e0cac523ed19d654aba0049848aad2aa63fb65e
2018-12-17 18:59:43 -08:00

25 lines
405 B
JSON

{
"root": true,
"extends": [
"wikimedia/client",
"wikimedia/jquery"
],
"globals": {
"ve": true,
"VisualEditorSupportCheck": false,
"OO": false,
"unicodeJS": false,
"RangeFix": false,
"Papa": false,
"mw": false,
"require": false
},
"rules": {
"jquery/no-hide": "error",
"jquery/no-show": "error",
"jquery/no-toggle": "error",
"max-len": "off",
"valid-jsdoc": "off"
}
}