Skip to content

Instantly share code, notes, and snippets.

@benhughes
Last active January 4, 2016 14:19
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 benhughes/8634064 to your computer and use it in GitHub Desktop.
Save benhughes/8634064 to your computer and use it in GitHub Desktop.
My default jshintrc file
{
"undef": true,
"unused": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"freeze": true,
"immed": true,
"indent": 4,
"latedef": true,
"newcap": true,
"noarg": true,
"noempty": true,
"quotmark": false,
"strict": true,
"trailing": true,
"maxdepth": 2,
"maxstatements": 10,
"browser": true,
"globals": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment