mediawiki-extensions-Visual.../.jshintrc
Timo Tijhof f415b8d747 JSHint: Re-order jshintrc options to split common from project settings
Per I43ace21208 and https://www.mediawiki.org/wiki/CC/JS#Linting

Change-Id: I280d377071ca1244130cd976aeba11d2152ef923
2013-04-13 08:53:11 +02:00

45 lines
603 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": true,
"multistr": true,
"smarttabs": true,
// Environment
"browser": true,
"jquery": true,
// Legacy
"nomen": true,
"predef": [
"ve",
"unicodeJS",
"QUnit"
]
}