Skip to content

Commit 038fd09

Browse files
authored
Merge pull request usablica#764 from usablica/js-hint
Basic jsHint implementation
2 parents 3d9d08c + 81ce1f0 commit 038fd09

File tree

3 files changed

+258
-210
lines changed

3 files changed

+258
-210
lines changed

.jshintrc

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"undef": true,
3+
"unused": true,
4+
"eqeqeq": true,
5+
"globals": {
6+
"window" : true,
7+
"document" : true,
8+
"exports" : true,
9+
"define" : true,
10+
"SVGElement" : true,
11+
"module" : true,
12+
"console" : true,
13+
"global" : true,
14+
"self" : true
15+
}
16+
}

0 commit comments

Comments
 (0)