Skip to content

Commit

Permalink
JSHint
Browse files Browse the repository at this point in the history
  • Loading branch information
q2s2t committed Aug 26, 2014
1 parent fbebb35 commit e9a0638
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .jshintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
.tmp
21 changes: 21 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
// Enforcing options
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"freeze": true,
"immed": true,
"indent": 2,
"latedef": true,
"quotmark": "single",
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"maxlen": 80,

// Environments
"node": true
}

0 comments on commit e9a0638

Please sign in to comment.