Skip to content
This repository has been archived by the owner on Sep 14, 2021. It is now read-only.

Commit

Permalink
Normalize jshint rules across the project
Browse files Browse the repository at this point in the history
  • Loading branch information
joelpurra committed Nov 21, 2013
1 parent 155b0b7 commit b86f243
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .jshintrc
@@ -0,0 +1,21 @@
{
"node": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 4,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": true,
"regexp": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true,
"white": false
}

0 comments on commit b86f243

Please sign in to comment.