mediawiki-extensions-Visual.../.jshintrc
Timo Tijhof 9b49a7ce81 Clean up: Single quotes
* There were only 3 files with single quotes, fixed them all.

* Added option to .jshintrc (be sure to use the latest version of
  node-jshint since this is a fairly new addition to the library).

Change-Id: I8bf8895ce56bf86e3bed244279a9d32269e44763
2012-08-07 07:02:01 +02:00

33 lines
410 B
Plaintext

{
"predef": [
"ve",
"QUnit"
],
"bitwise": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"regexp": true,
"quotmark": "single",
"undef": true,
"strict": false,
"trailing": true,
"smarttabs": true,
"multistr": true,
"browser": true,
"node": true,
"jquery": true,
"nomen": true,
"onevar": true
}