Skip to content

Commit 2ab293c

Browse files
committed
stricter jshint
1 parent b3857f7 commit 2ab293c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

bbtree.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ BBTree.prototype = {
3636

3737
var node = this.root,
3838
path = [],
39-
dir, c, parent;
39+
dir, c;
4040

4141
while (true) {
4242
c = compare(key, node.key);

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
"tape": "^3.0.0"
2424
},
2525
"jshintConfig": {
26-
"node": true
26+
"node": true,
27+
"unused": true,
28+
"undef": true,
29+
"trailing": true,
30+
"browser": true
2731
}
2832
}

0 commit comments

Comments
 (0)