Skip to content

Instantly share code, notes, and snippets.

@daffl
Created March 17, 2015 05:06
Show Gist options
  • Select an option

  • Save daffl/24e15b8d18bdf85bbe21 to your computer and use it in GitHub Desktop.

Select an option

Save daffl/24e15b8d18bdf85bbe21 to your computer and use it in GitHub Desktop.
My standard JSHint configuration
{
"node": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": "nofunc",
"newcap": false,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": true,
"strict": false,
"trailing": true,
"smarttabs": true,
"white": false,
"globals": {
"it": true,
"describe": true,
"before": true,
"after": true,
"exports": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment