Skip to content

Instantly share code, notes, and snippets.

@guillaumealgis
Created October 21, 2012 15:16
Show Gist options
  • Save guillaumealgis/3927244 to your computer and use it in GitHub Desktop.
Save guillaumealgis/3927244 to your computer and use it in GitHub Desktop.
JSHint config file for jQuery dev
{
// Enforcing
"bitwise": true,
"camelcase": true,
"eqeqeq": true,
"forin": true,
"immed": true,
"indent": 4,
"latedef": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"maxparams": 10,
"maxdepth": 5,
"maxlen": 80,
// Environments
"browser": true,
"jquery": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment