Created
September 25, 2014 17:50
-
-
Save mrDarcyMurphy/0e1d50efc2e8f77942fc to your computer and use it in GitHub Desktop.
.jshintrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"bitwise": false, | |
"camelcase": true, | |
"curly": false, | |
"eqeqeq": false, | |
"es3": false, | |
"forin": true, | |
"freeze": true, | |
"immed": true, | |
"indent": 2, | |
"latedef": true, | |
"newcap": true, | |
"noarg": true, | |
"noempty": true, | |
"nonew": true, | |
"plusplus": false, | |
"quotmark": "single", | |
"undef": true, | |
"unused": "vars", | |
"strict": true, | |
"trailing": true, | |
"maxparams": 3, | |
"maxdepth": 4, | |
"maxstatements": 6, | |
"maxcomplexity": 10, | |
"maxlen": false, | |
"asi": true, | |
"boss": false, | |
"debug": false, | |
"eqnull": true, | |
"esnext": false, | |
"evil": false, | |
"expr": false, | |
"funcscope": false, | |
"globalstrict": false, | |
"iterator": false, | |
"lastsemic": false, | |
"laxbreak": false, | |
"laxcomma": false, | |
"loopfunc": false, | |
"moz": false, | |
"multistr": false, | |
"notypeof": false, | |
"proto": false, | |
"scripturl": false, | |
"smarttabs": false, | |
"shadow": false, | |
"sub": false, | |
"supernew": true, | |
"validthis": false, | |
"browser": true, | |
"couch": false, | |
"devel": false, | |
"dojo": false, | |
"jquery": false, | |
"mootools": false, | |
"node": true, | |
"nonstandard": false, | |
"phantom": false, | |
"prototypejs": false, | |
"rhino": false, | |
"worker": false, | |
"wsh": false, | |
"yui": false, | |
"predef" : [ | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment