Skip to content

Instantly share code, notes, and snippets.

@sfroestl
Last active December 31, 2015 04:29
Show Gist options
  • Save sfroestl/7934959 to your computer and use it in GitHub Desktop.
Save sfroestl/7934959 to your computer and use it in GitHub Desktop.
jshintrc config
{
"bitwise": true,
"curly": true,
"eqeqeq": true,
"es3": true,
"forin": true,
"immed": true,
"newcap": true,
"noarg": true,
"noempty": true,
"quotmark": "single",
"undef": true,
"unused": "vars",
"strict": true,
"trailing": true,
"maxparams": 15,
"maxdepth": 5,
"maxstatements": 100,
"maxcomplexity" : 20,
"maxlen": 120,
"browser": true,
"jquery": true,
"devel": true,
"white": true,
"predef": [
"describe",
"beforeEach",
"module",
"inject",
"it",
"expect",
"iit",
"xit",
"ddescribe"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment