Created
September 9, 2015 11:48
-
-
Save wzup/9fbf584c3e84a73092c7 to your computer and use it in GitHub Desktop.
.jshintrc file example, minimal settings, copy/paste to root folder
This file contains hidden or 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
{ | |
"node": true, | |
"esnext": true, | |
"bitwise": true, | |
"camelcase": true, | |
"eqeqeq": true, | |
"eqnull": true, | |
"immed": true, | |
"indent": 2, | |
"latedef": "nofunc", | |
"newcap": true, | |
"nonew": true, | |
"noarg": true, | |
"quotmark": "single", | |
"regexp": true, | |
"undef": true, | |
"unused": false, | |
"trailing": true, | |
"sub": true, | |
"maxlen": 80 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment