Skip to content

Instantly share code, notes, and snippets.

@sebdah
Created May 23, 2014 06:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebdah/6f70f2d52fe313ee5e05 to your computer and use it in GitHub Desktop.
Save sebdah/6f70f2d52fe313ee5e05 to your computer and use it in GitHub Desktop.
.jshintrc for NodeJS
{
"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