Skip to content

Instantly share code, notes, and snippets.

@cspanring
Created July 15, 2013 13:04
Show Gist options
  • Save cspanring/5999775 to your computer and use it in GitHub Desktop.
Save cspanring/5999775 to your computer and use it in GitHub Desktop.
jshint config file
{
"node": true,
"browser": true,
"es3": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"quotmark": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": true,
"newcap": true,
"noarg": true,
"regexp": true,
"undef": true,
"unused": true,
"strict": true,
"globals": {
"$": false,
"jQuery": false,
"gxp": false,
"Ext": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment