Skip to content

Instantly share code, notes, and snippets.

@BigHeadCreations
Created May 19, 2015 03:12
Show Gist options
  • Select an option

  • Save BigHeadCreations/7f5565fb89dd816dac1e to your computer and use it in GitHub Desktop.

Select an option

Save BigHeadCreations/7f5565fb89dd816dac1e to your computer and use it in GitHub Desktop.
my .jshintrc
{
// enforcing options
"nonew" : true,
"curly" : true,
"noarg" : true,
"forin" : true,
"eqeqeq" : true,
"strict" : true,
"undef" : true,
"bitwise" : true,
// relaxing options
"globalstrict" : true,
// environments
"browser" : true,
"devel" : true,
"jquery" : true,
// globals
"globals" : {"angular" : true}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment