Skip to content

Instantly share code, notes, and snippets.

@d-simon
Created March 22, 2014 14:40
Show Gist options
  • Save d-simon/9708208 to your computer and use it in GitHub Desktop.
Save d-simon/9708208 to your computer and use it in GitHub Desktop.
.jshintrc - Personal Node.js Coding Style JSHint
{
"curly": false,
"eqeqeq": true,
"eqnull": true,
"bitwise": true,
"camelcase": false,
"forin": true,
"immed": true,
"indent": 4,
"latedef": true,
"laxcomma": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": false,
"plusplus": false,
"regexp": true,
"undef": true,
"unused": true,
"trailing": true,
"maxparams": 10,
"maxdepth": 3,
"maxstatements": 50,
"maxcomplexity": 5,
"smarttabs": true,
"browser": false,
"node": true,
"globals": {
"process": true,
"setTimeout": true,
"require": true,
"console": true,
"module": true,
"GLOBAL": true,
"describe": true,
"before": true,
"it": true,
"clientSockets": true,
"__dirname": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment