Skip to content

Instantly share code, notes, and snippets.

@webuniverseio
Last active January 1, 2016 13:08
Show Gist options
  • Save webuniverseio/8148823 to your computer and use it in GitHub Desktop.
Save webuniverseio/8148823 to your computer and use it in GitHub Desktop.
jshint options
{
// To fix column positions for JSHint errors you may want to add `"indent": 1` to your
// **User** "jshint_options". This issue affects users with tabs for indentation.
// This fix was reverted due to a conflict with using the `"white": true` option.
// "indent": 1,
//Enforcing Options
"camelcase": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"immed": true,
"indent": true,
"latedef": true,
"newcap": true,
"noempty": true,
"nonew": true,
"quotmark": true,
"regexp": true,
"undef": true,
"strict": true,
"strict": false,
"trailing": true,
//Relaxing Options
"evil": false,
"expr": true,
"regexdash": true,
"smarttabs": true,
"sub": true,
//Environments
//"jquery": true,
"browser": true,
//Legacy
"white": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment