mediawiki-extensions-WikiEd.../.jshintrc

35 lines
466 B
Plaintext
Raw Normal View History

{
/* 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,
// Legacy
"onevar": true,
/* Local */
// Relaxing
"loopfunc": true,
"multistr": true,
// Environment
"browser": true,
"globals": {
"mediaWiki": false,
"jQuery": false,
"QUnit": false
}
}