Skip to content

Instantly share code, notes, and snippets.

@jacobscarter
Created September 1, 2015 17:17
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 jacobscarter/945315cee1345f132273 to your computer and use it in GitHub Desktop.
Save jacobscarter/945315cee1345f132273 to your computer and use it in GitHub Desktop.
Example JSHint RC File
{
"node": true,
"browser": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 4,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": true,
"strict": false,
"trailing": true,
"smarttabs": true,
"globals": {
"angular": false,
"mixpanel": false,
"define": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment