Created
January 25, 2016 22:22
-
-
Save matyax/61e2c942960f1c492fa5 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
Show hidden 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, | |
"esnext": true, | |
"globals": { | |
"angular": true, | |
"jQuery": true, | |
"$": true, | |
"alert": true, | |
"console": true, | |
"moment": true, | |
"confirm": true, | |
"App": true | |
}, | |
"globalstrict": true, | |
"quotmark": true, | |
"undef": true, | |
"unused": true, | |
"curly": true, | |
"eqeqeq": true, | |
"maxdepth": 4, | |
"maxstatements": 15 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment