Created
October 13, 2014 02:46
-
-
Save benmccormick/8e61bff67a5eceba5d92 to your computer and use it in GitHub Desktop.
My jsHint Configuration
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
{ | |
"bitwise":true, | |
"curly": true, | |
"eqeqeq": true, | |
"immed": true, | |
"indent": 4, | |
"latedef":true, | |
"newcap": true, | |
"nonew":true, | |
"quotmark":"single", | |
"undef":true, | |
"unused":true, | |
"trailing":true, | |
"maxlen":80, | |
"browser":true, | |
"jquery":true, | |
"globals": { | |
"console":false, | |
"confirm":true, | |
"$":false, | |
"Handlebars":false, | |
"define": false, | |
"require":false, | |
"Backbone":false, | |
"Backgrid":false, | |
"_":false, | |
"d3":false, | |
"expect":false, | |
"it":false, | |
"jasmine":false, | |
"describe":false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment