Skip to content

Instantly share code, notes, and snippets.

@mattyod
Created March 12, 2015 10:15
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 mattyod/f9319415d9dcf4d125a2 to your computer and use it in GitHub Desktop.
Save mattyod/f9319415d9dcf4d125a2 to your computer and use it in GitHub Desktop.
A jshintrc file for Node app
{
"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