Skip to content

Commit

Permalink
Moves JSHint config out of package.json.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Pawlowicz committed Feb 27, 2014
1 parent 9ec988f commit c70572f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
19 changes: 19 additions & 0 deletions .jshintrc
@@ -0,0 +1,19 @@
{
"browser": false,
"camelcase": true,
"curly": false,
"eqeqeq": false,
"eqnull": true,
"immed": true,
"indent": 2,
"latedef": true,
"multistr": false,
"noarg": true,
"node": true,
"plusplus": false,
"quotmark": "single",
"strict": false,
"trailing": true,
"undef": true,
"unused": true
}
19 changes: 0 additions & 19 deletions package.json
Expand Up @@ -41,25 +41,6 @@
"nock": "0.27.x",
"vows": "0.7.x"
},
"jshintConfig": {
"browser": false,
"camelcase": true,
"curly": false,
"eqeqeq": false,
"eqnull": true,
"immed": true,
"indent": 2,
"latedef": true,
"multistr": false,
"noarg": true,
"node": true,
"plusplus": false,
"quotmark": "single",
"strict": false,
"trailing": true,
"undef": true,
"unused": true
},
"engines": {
"node": ">=0.8.0"
}
Expand Down

0 comments on commit c70572f

Please sign in to comment.