Skip to content

Instantly share code, notes, and snippets.

@jtrussell
Last active December 25, 2015 23:09
Show Gist options
  • Save jtrussell/7054698 to your computer and use it in GitHub Desktop.
Save jtrussell/7054698 to your computer and use it in GitHub Desktop.
My jshintrc files for different environments.
{
"predef": ["..."],
"browser": true,
"bitwise": true,
"camelcase": false,
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": false,
"strict": true,
"trailing": true,
"smarttabs": false,
"laxcomma": true,
"onevar": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment