Skip to content

Instantly share code, notes, and snippets.

@lafikl
Created August 25, 2013 13:09
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 lafikl/6333780 to your computer and use it in GitHub Desktop.
Save lafikl/6333780 to your computer and use it in GitHub Desktop.
rules for jshint command-line utility.
{
"curly": true,
"eqeqeq": true,
"forin": true,
"camelcase": true,
"immed": true,
"indent": 2,
"latedef": true,
"newcap": true,
"quotmark": "single",
"strict": true,
"trailing": true,
"maxparams": 3,
"maxdepth": 3,
"maxlen": 80
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment