mediawiki-extensions-Visual.../.jshintrc
Timo Tijhof 908d1a8c19 oojs: Integrate with OOJS v1.0.0
To make integration and testing easier keeping references and
tests unchanged.

Change-Id: Ie808eaf0ffb754ba9c6be13810cfec2385d8de36
2013-06-06 17:29:55 +02:00

46 lines
612 B
Plaintext

{
/* 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 */
// Enforcing
"bitwise": true,
"forin": false,
"plusplus": false,
"regexp": true,
"strict": false,
// Relaxing
"es5": false,
"multistr": true,
"smarttabs": true,
// Environment
"browser": true,
"jquery": true,
// Legacy
"nomen": true,
"predef": [
"OO",
"ve",
"unicodeJS",
"QUnit"
]
}