Skip to content

Instantly share code, notes, and snippets.

@angrykoala
Last active November 10, 2016 00:38
Show Gist options
  • Save angrykoala/7e5aea8b4e6175550078a720829027ca to your computer and use it in GitHub Desktop.
Save angrykoala/7e5aea8b4e6175550078a720829027ca to your computer and use it in GitHub Desktop.
Personal jshint configuration file
{
"maxerr": 50,
"camelcase": true,
"eqeqeq": true,
"forin": false,
"latedef": false,
"noempty": true,
"maxcomplexity": 6,
"maxdepth": 6,
"nocomma": true,
"nonew": true,
"strict": "global",
"undef": true,
"unused": true,
"varstmt": true,
"freeze": true,
"node": true,
"mocha": true,
"esversion": 6
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment