Skip to content

Instantly share code, notes, and snippets.

@beresmate
Created March 5, 2014 19:32
Show Gist options
  • Save beresmate/9374782 to your computer and use it in GitHub Desktop.
Save beresmate/9374782 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/
"curly": true,
"eqeqeq": true,
"latedef": true,
"quotmark": "single",
"undef": true,
"unused": false,
"globalstrict": true,
"laxcomma": false,
"loopfunc": false,
"sub": false,
"browser": true,
"esnext": true,
"globals": {},
"smarttabs": true,
"trailing": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment