Skip to content

Instantly share code, notes, and snippets.

@tcrosen
Created January 10, 2015 04:20
Show Gist options
  • Save tcrosen/a6f901446aa8bffe39d9 to your computer and use it in GitHub Desktop.
Save tcrosen/a6f901446aa8bffe39d9 to your computer and use it in GitHub Desktop.
My default .jshint settings
{
"node": true,
"browser": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": "nofunc",
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true,
"globals": {
"angular": false,
"firebase": false,
"_": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment