Last active
August 29, 2015 14:15
-
-
Save ericelliott/2d0795c33293758c0459 to your computer and use it in GitHub Desktop.
Idiomatic JavaScript .jshintrc for Isomorphic JavaScript with Node style modules and Browserify
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"maxerr": 10, | |
"node": true, | |
"browser": true, | |
"typed": true, | |
"worker": true, | |
"browserify": true, | |
"predef": ["define", "require"], | |
"camelcase": false, | |
"curly": true, | |
"eqeqeq": true, | |
"eqnull": true, | |
"forin": true, | |
"freeze": true, | |
"immed": true, | |
"indent": 2, | |
"latedef": true, | |
"newcap": true, | |
"noarg": true, | |
"noempty": false, | |
"nonbsp": false, | |
"nonew": true, | |
"plusplus": false, | |
"quotmark": false, | |
"undef": true, | |
"unused": true, | |
"strict": true, | |
"maxparams": 5, | |
"maxdepth": 5, | |
"maxstatements": false, | |
"maxcomplexity": 5, | |
"validthis": true, | |
"maxlen": 80 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment