Skip to content

Instantly share code, notes, and snippets.

@otterthecat
Last active August 29, 2015 14:03
Show Gist options
  • Save otterthecat/35bd5464ff1b49c34dee to your computer and use it in GitHub Desktop.
Save otterthecat/35bd5464ff1b49c34dee to your computer and use it in GitHub Desktop.
default jshint config
{
"camelcase": true,
"curly": true,
"eqeqeq":true,
"forin": true,
"immed": true,
"indent": 2,
"latedef": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonbsp": true,
"nonew": true,
"quotmark": "single",
"undef": true,
"unused": true,
"strict": true,
"maxparams": 3,
"maxdepth": 2,
"maxstatements": 5,
"maxlen": 80,
"maxerr": 5,
"browser": true,
"node": true,
"globals": {
"describe": false,
"it": false,
"before": false,
"beforeEach": false,
"after": false,
"afterEach": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment