mediawiki-extensions-Nuke/.jshintrc
grunny f83cade885 Make Nuke pass jshint
Adds a basic .jshintrc based on the common settings from the coding
conventions page and removes unused variable mw.

Bug: 61616
Change-Id: I579f0528c3c57de46449457087f441c88229379b
2014-04-06 18:46:12 +10:00

26 lines
325 B
Plaintext

{
"predef": [
"jQuery"
],
/* Common */
// Enforcing
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"quotmark": "single",
"trailing": true,
"undef": true,
"unused": true,
// Environment
"browser": true
}