Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ICEDLEE337
Created February 1, 2016 23:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ICEDLEE337/a1f3ccfbcbe5d251616c to your computer and use it in GitHub Desktop.
Save ICEDLEE337/a1f3ccfbcbe5d251616c to your computer and use it in GitHub Desktop.
.jshintrc to expose console.log statements
{
"bitwise": false,
"curly": true,
"eqeqeq": true,
"es3": false,
"forin": true,
"freeze": true,
"immed": true,
"indent": 4,
"latedef": true,
"newcap": true,
"noarg": true,
"undef": true,
"unused": false,
"strict": true,
"maxparams": 10,
"maxdepth": 5,
"quotmark": "single",
"maxstatements": 40,
"esnext": false,
"node": false,
"browser": true,
"jquery": true,
"regexp": false,
"devel": false,
"globals": {
"require": false,
"module": false,
"AmCharts": false,
"moment": false,
"angular": false,
"_": true,
"after": false,
"afterEach": false,
"before": false,
"beforeEach": false,
"browser": false,
"describe": false,
"expect": false,
"inject": false,
"it": false,
"jasmine": false,
"spyOn": false,
"xit": true,
"xdescribe": true,
"by": true,
"element": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment