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

Commit

Permalink
Fix .jshintrc options to remove jshint complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
wyuenho committed Dec 31, 2012
1 parent 49d2a9c commit 83f6cd6
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"camelcase": true,
"immed": true,
"indent": 2,
"latedef": true,
"noarg": true,
"trailing": true,
Expand All @@ -13,13 +12,11 @@
"unused": true,
"eqnull": true,

"devel": false,
"jquery": false,
"nonstandard": false,
"node": false,
"node": true,

"globals": {
"Backbone": false,
"_": false
"_": false,
"define": false
}
}
31 changes: 31 additions & 0 deletions test/.jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"camelcase": true,
"immed": true,
"latedef": true,
"noarg": true,
"trailing": true,
"expr": true,
"shadow": true,
"supernew": true,
"boss": true,
"undef": true,
"unused": true,
"eqnull": true,

"devel": true,
"jquery": true,
"browser": true,
"nonstandard": true,
"node": true,

"globals": {
"ok": false,
"test": false,
"module": false,
"equal": false,
"deepEqual": false,
"throws": false,
"Backbone": false,
"_": false
}
}

0 comments on commit 83f6cd6

Please sign in to comment.