Created
July 31, 2014 20:30
-
-
Save claudioc/4e6c49be11080ebf9888 to your computer and use it in GitHub Desktop.
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
{ | |
// Details: https://github.com/victorporof/Sublime-JSHint#using-your-own-jshintrc-options | |
// Example: https://github.com/jshint/jshint/blob/master/examples/.jshintrc | |
// Documentation: http://www.jshint.com/docs/ | |
"browser": true, | |
"jquery": true, | |
"node": true, | |
"esnext": false, | |
"globals": {}, | |
"laxcomma": true, | |
"globalstrict": false, | |
"quotmark": "double", | |
"curly": true, | |
"indent": 2, | |
"undef": true, | |
"unused": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment