Skip to content

Instantly share code, notes, and snippets.

@kemitchell
Created December 7, 2014 08:39
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 kemitchell/9267c5831be2e88f3b08 to your computer and use it in GitHub Desktop.
Save kemitchell/9267c5831be2e88f3b08 to your computer and use it in GitHub Desktop.
JSHint Configuration
{
"node": true,
"esnext": true,
"bitwise": true,
"browser": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true,
"white": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment