Skip to content

Instantly share code, notes, and snippets.

@ingshtrom
Created August 19, 2013 11:44
Show Gist options
  • Save ingshtrom/6268255 to your computer and use it in GitHub Desktop.
Save ingshtrom/6268255 to your computer and use it in GitHub Desktop.
This is my JSHint configuration file for use with TestComplete code. I am using Sublime Text build #3047 with the JSHint Gutter plugin.
{
// 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": {
"Log": true
},
"globalstrict": true,
// "quotmark": true,
"smarttabs": true,
"trailing": true,
"undef": true,
"unused": true,
"curly": true,
"es3": true,
"evil": true,
"strict": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment