Skip to content

Instantly share code, notes, and snippets.

@matyax
Created January 25, 2016 22:22
Show Gist options
  • Save matyax/61e2c942960f1c492fa5 to your computer and use it in GitHub Desktop.
Save matyax/61e2c942960f1c492fa5 to your computer and use it in GitHub Desktop.
{
// 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