Skip to content

Instantly share code, notes, and snippets.

@abruzzi
Created February 27, 2014 01: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 abruzzi/9242419 to your computer and use it in GitHub Desktop.
Save abruzzi/9242419 to your computer and use it in GitHub Desktop.
A simple jshint rc
{
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"indent": 4,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"quotmark": "single",
"unused": true,
"strict": true,
"trailing": true,
"maxparams": 5,
"maxcomplexity": 10,
"maxlen": 80,
"asi": true,
"loopfunc": true,
"browser": true,
"jquery": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment