mediawiki-extensions-Relate.../.jshintrc
Sam Smith 7ebe784fc2 Run JSHint and JSCS against tests
Changes:

* Extend the definition of all JavaScript files to include those in the
  tests directory
* Run JSHint and JSCS against all JavaScript files
* Fix the existing code style errors in the RelatedPagesGateway
  test

Change-Id: Ia6d8fa63e0b86760857d4480a0575b57512fa36b
2015-11-06 22:08:31 +00:00

24 lines
298 B
Plaintext

{
// Enforcing
"bitwise": true,
"eqeqeq": true,
"es3": true,
"latedef": true,
"noarg": true,
"nonew": true,
"undef": true,
"unused": true,
"strict": false,
// Environment
"browser": true,
"globals": {
"mw": false,
"$": false,
"jQuery": true,
"OO": true,
"QUnit": true
}
}