Skip to content

Instantly share code, notes, and snippets.

@h2non
Last active August 29, 2015 14:09
Show Gist options
  • Save h2non/31cff47727699f10caa2 to your computer and use it in GitHub Desktop.
Save h2non/31cff47727699f10caa2 to your computer and use it in GitHub Desktop.
JSHint directives for node.js projects
{
"node": true,
"browser": false,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": "nofunc",
"newcap": true,
"noarg": true,
"quotmark": "single",
"undef": true,
"unused": true,
"strict": true,
"asi": true,
"evil": true,
"validthis": true,
"forin": true,
"eqnull": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment