Skip to content

Instantly share code, notes, and snippets.

@germanattanasio
Created April 11, 2015 03:29
Show Gist options
  • Save germanattanasio/c32067e82b1adf0aa79b to your computer and use it in GitHub Desktop.
Save germanattanasio/c32067e82b1adf0aa79b to your computer and use it in GitHub Desktop.
JSHint configuration for node development
{
"globals": {
"jasmine": false,
"spyOn": false,
"it": false,
"console": false,
"describe": true,
"expect": false,
"beforeEach": false,
"before": false,
"after": false,
"waits": false,
"waitsFor": false,
"runs": false
},
"node" : true,
"es5" : true,
"browser" : true,
"boss" : false,
"curly": false,
"debug": false,
"devel": false,
"eqeqeq": true,
"evil": true,
"forin": false,
"immed": true,
"maxlen": 100,
"indent": 2,
"quotmark": "single",
"laxbreak": false,
"newcap": true,
"noarg": true,
"noempty": false,
"nonew": false,
"nomen": false,
"onevar": true,
"plusplus": false,
"regexp": false,
"undef": true,
"sub": true,
"strict": true,
"white": true,
"unused": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment