mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-24 22:35:41 +00:00
9b49a7ce81
* 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
33 lines
410 B
Plaintext
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
|
|
}
|