Skip to content

Commit

Permalink
Add .jshintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
ykushch committed Jan 21, 2016
1 parent f445daa commit d0b52d2
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .jshintrc
@@ -0,0 +1,26 @@
{
"node": 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": true,
"trailing": true,
"smarttabs": true,
"white": true,
"globals": {
"angular": false,
"$": false
}
}

0 comments on commit d0b52d2

Please sign in to comment.