Skip to content

Instantly share code, notes, and snippets.

@jtrussell
Created October 22, 2013 16:36
Show Gist options
  • Save jtrussell/7103875 to your computer and use it in GitHub Desktop.
Save jtrussell/7103875 to your computer and use it in GitHub Desktop.
jshint config for node apps
{
"node": true,
"bitwise": true,
"camelcase": false,
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": false,
"strict": true,
"trailing": true,
"smarttabs": false,
"laxcomma": true,
"onevar": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment