Created
May 23, 2014 06:24
-
-
Save sebdah/6f70f2d52fe313ee5e05 to your computer and use it in GitHub Desktop.
.jshintrc for NodeJS
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
{ | |
"globals" : { | |
"describe" : false, | |
"it" : false, | |
"before" : false, | |
"beforeEach" : false, | |
"after" : false, | |
"afterEach" : false | |
}, | |
"camelcase": true, | |
"curly": true, | |
"eqeqeq": true, | |
"freeze": true, | |
"indent": 2, | |
"latedef": true, | |
"laxcomma": true, | |
"node": true, | |
"trailing": true, | |
"strict": true, | |
"unused": "vars", | |
"undef": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment