forked from patriciogonzalezvivo/glslCanvas
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.jshintrc
37 lines (37 loc) · 754 Bytes
/
.jshintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"node": true,
"browser": true,
"freeze": true,
"boss": true,
"curly": true,
"devel": true,
"esnext": true,
"eqnull": true,
"eqeqeq": true,
"expr": true,
"notypeof": true,
"noarg": true,
"funcscope": true,
"globalstrict": false,
"loopfunc": true,
"noempty": true,
"nonstandard": true,
"onecase": true,
"sub": true,
"regexdash": true,
"trailing": true,
"undef": true,
"unused": "vars",
"globals": {
"L": true,
"describe": true,
"it": true,
"sinon": true,
"_": true,
"before": true,
"beforeEach": true,
"afterEach": true,
"WebGLRenderingContext": true,
"makeScene": true
}
}