mediawiki-extensions-Popups/.jshintrc
jhobs 046d12f51b Update linting and enable command line QUnit
You can use `grunt watch` now!

Changes:
 * Re-enable QUnit (but ignore legacy tests)
 * Add a sample QUnit test
 * Add ability to run QUnit via `grunt watch` or `grunt test`
 * Move linting to `grunt lint` task
 * Add Redux to globals in linter

Change-Id: Ie4a65a8a66773d6472b3d73257267d18027ff3c3
2016-11-08 13:56:17 -05:00

23 lines
399 B
Plaintext

{
"globals": {
"console": true,
"jQuery": true,
"mediaWiki": true,
"module": false,
"moment": true, // FIXME: Remove this once moment is removed from codebase
"require": false,
"OO": true,
"QUnit": true,
"Redux": true
},
"browser": true,
"curly": true,
"eqeqeq": true,
"forin": false,
"onevar": true,
"supernew": true,
"trailing": true,
"undef" : true,
"unused": true
}