Created
March 12, 2015 10:15
-
-
Save mattyod/f9319415d9dcf4d125a2 to your computer and use it in GitHub Desktop.
A jshintrc file for Node app
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
{ | |
"predef": [ | |
], | |
"node": true, | |
"bitwise" : true, | |
"curly" : true, | |
"eqeqeq" : true, | |
"forin" : true, | |
"freeze" : true, | |
"futurehostile" : true, | |
"latedef" : "nofunc", | |
"noarg" : true, | |
"nonew" : true, | |
"nonbsp" : true, | |
"undef" : true, | |
"unused" : true, | |
"strict" : true, | |
"maxdepth" : 3, | |
"maxstatements" : 10, | |
"maxcomplexity" : 5, | |
"expr" : true, | |
"boss" : true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment