Skip to content

Instantly share code, notes, and snippets.

@ekazakov
Created January 26, 2014 20:23
Show Gist options
  • Save ekazakov/8638980 to your computer and use it in GitHub Desktop.
Save ekazakov/8638980 to your computer and use it in GitHub Desktop.
JSHint config
{
"laxcomma" : false
, "globalstrict": false
, "quotmark": "double"
, "eqnull" : true
, "browser" : true
, "undef" : false
, "unused" : true
, "curly" : true
, "devel" : {
"console": true
}
, "globals" : {
"Backbone" : true
, "globals" : true
, "$" : true
, "app" : true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment