Skip to content

Instantly share code, notes, and snippets.

@blessdyb
Created November 15, 2013 15:24
Show Gist options
  • Save blessdyb/7486057 to your computer and use it in GitHub Desktop.
Save blessdyb/7486057 to your computer and use it in GitHub Desktop.
JSHint Default Configuration
{
"curly": true,
"camelcase": true,
"undef": true,
"unused": true,
"eqeqeq": true,
"freeze": true,
"immed": true,
"indent": 4,
"latedef": true,
"newcap": true,
"nonew": true,
"noempty": true,
"plusplus": true,
"quotmark": "single",
"strict": true,
"trailing": true,
"maxdepth": 4,
"maxstatements": 4,
"maxlen": 80
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment