1
0
mirror of https://github.com/moodle/moodle.git synced 2025-04-23 17:34:56 +02:00

MDL-48620 JavaScript: Update .jshintrc to comply with coding style

* eqeqeq: We do not require use of ===
* maxlen: Coding style aims for 132 characters
* indent: 4 Characters (Helps some editors but does not warn in new version of jshint)
* undef: Warn about variables used before they are defined
* predef: Specify that we define the M variable elsewhere
This commit is contained in:
Andrew Nicols 2014-12-17 10:23:22 +08:00
parent 0375273e4e
commit 2357166901

@ -5,7 +5,7 @@
"browser": true,
"curly": true,
"debug": false,
"eqeqeq": true,
"eqeqeq": false,
"eqnull": false,
"es5": false,
"esnext": false,
@ -15,6 +15,7 @@
"funcscope": false,
"globalstrict": false,
"immed": true,
"indent": 4,
"iterator": false,
"lastsemic": false,
"latedef": true,
@ -22,7 +23,7 @@
"laxcomma": false,
"loopfunc": false,
"maxerr": 500,
"maxlen": 180,
"maxlen": 132,
"multistr": false,
"newcap": true,
"noarg": true,
@ -32,6 +33,9 @@
"onevar": false,
"passfail": false,
"plusplus": false,
"predef": [
"M"
],
"proto": false,
"regexdash": false,
"regexp": false,
@ -43,6 +47,7 @@
"supernew": false,
"trailing": true,
"unused": true,
"undef": true,
"white": false,
"yui": true
}