Last active
December 20, 2015 12:09
-
-
Save fiveisprime/6128393 to your computer and use it in GitHub Desktop.
Default .jshintrc for node projects. Includes globals for Jasmine specs.
This file contains hidden or 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
{ | |
"maxerr" : 50, | |
"bitwise" : true, | |
"camelcase" : false, | |
"curly" : false, | |
"eqeqeq" : true, | |
"forin" : false, | |
"immed" : false, | |
"latedef" : true, | |
"newcap" : true, | |
"noarg" : true, | |
"noempty" : true, | |
"nonew" : false, | |
"plusplus" : false, | |
"quotmark" : true, | |
"undef" : true, | |
"unused" : true, | |
"strict" : false, | |
"trailing" : true, | |
"asi" : false, | |
"boss" : false, | |
"debug" : false, | |
"eqnull" : true, | |
"es5" : false, | |
"esnext" : true, | |
"moz" : false, | |
"evil" : true, | |
"expr" : true, | |
"funcscope" : false, | |
"globalstrict" : false, | |
"iterator" : false, | |
"lastsemic" : false, | |
"laxbreak" : false, | |
"laxcomma" : true, | |
"loopfunc" : false, | |
"multistr" : false, | |
"proto" : false, | |
"scripturl" : false, | |
"smarttabs" : false, | |
"shadow" : false, | |
"sub" : false, | |
"supernew" : false, | |
"validthis" : false, | |
"node" : true, | |
"globals" : { | |
"afterEach" : false, | |
"after" : false, | |
"beforeEach" : false, | |
"before" : false, | |
"describe" : false, | |
"it" : false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment