mediawiki-extensions-Scribunto/.jshintrc

32 lines
384 B
Plaintext
Raw Normal View History

{
/* Common */
// Enforcing
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": "nofunc",
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"trailing": true,
"undef": true,
"unused": true,
// Legacy
"onevar": true,
/* Local */
// Environment
"browser": true,
"jquery": true,
// Legacy
"nomen": true,
"globals": {
"mediaWiki": false
}
}