Skip to content
This repository was archived by the owner on Jul 6, 2022. It is now read-only.

Commit 8cd3d71

Browse files
committed
trying a more rigorous jshintrc.
1 parent b76d32d commit 8cd3d71

1 file changed

Lines changed: 30 additions & 1 deletion

File tree

.jshintrc

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,33 @@
11
{
2+
"browser": true,
3+
"camelcase": false,
4+
"curly": true,
5+
"devel": true,
6+
"eqeqeq": true,
7+
"eqnull": true,
8+
"esnext": true,
9+
"evil": false,
10+
"immed": true,
11+
"jasmine": true,
12+
"latedef": true,
213
"laxcomma": true,
3-
"lastsemic": true
14+
"lastsemic": true,
15+
"newcap": true,
16+
"node": true,
17+
"noempty": true,
18+
"noempty": true,
19+
"nonbsp": true,
20+
"nonew": true,
21+
"quotmark": false,
22+
"smarttabs": true,
23+
"strict": false,
24+
"trailing": true,
25+
"undef": true,
26+
"unused": true,
27+
"globals": {
28+
"define": true,
29+
"jest": true,
30+
"pit": true
31+
},
32+
"predef": [ "-Promise" ]
433
}

0 commit comments

Comments
 (0)