Skip to content

Instantly share code, notes, and snippets.

@smorcuend
Last active August 29, 2015 14:22
Show Gist options
  • Save smorcuend/2abaaebd84c421f9de4e to your computer and use it in GitHub Desktop.
Save smorcuend/2abaaebd84c421f9de4e to your computer and use it in GitHub Desktop.
My .jshintrc file for angular projects
{
"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",
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true,
"globals": {
"angular": false,
"$": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment