Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit d8236d8

Browse files
chore(.jshintrc): configure jshint to pass most of the code
1 parent 386f375 commit d8236d8

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.jshintrc

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
{
22
"node": true,
3+
"browser": true,
4+
"esversion": 6,
35

46
"curly": true,
57
"latedef": true,
6-
"quotmark": true,
8+
"quotmark": false,
79
"undef": true,
810
"unused": true,
9-
"trailing": true
11+
"trailing": true,
12+
"expr": true,
13+
"immed": true,
14+
15+
"globals": {
16+
"alert": false
17+
}
18+
1019
}

0 commit comments

Comments
 (0)