Skip to content
This repository has been archived by the owner on Jan 29, 2024. It is now read-only.

Commit

Permalink
feat(.jshintrc): add .jshintrc
Browse files Browse the repository at this point in the history
add .jshintrc to force coding style

Closes #17
  • Loading branch information
0x-r4bbit committed Apr 26, 2013
1 parent b1be575 commit 0c8d3da
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"node": true,
"es5": true,
"esnext": false,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": false,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true
}

0 comments on commit 0c8d3da

Please sign in to comment.