-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.jshintrc
49 lines (49 loc) · 1.03 KB
/
.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
38
39
40
41
42
43
44
45
46
47
48
49
{
"bitwise": true,
"browser": true,
"camelcase": true,
"curly": true,
"es3": true,
"expr": true,
"eqeqeq": true,
"eqnull": true,
"esnext": true,
"globalstrict": true,
"immed": true,
"latedef": true,
"laxbreak": true,
"loopfunc": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"node": true,
"regexp": true,
"smarttabs": true,
"strict": true,
"sub": true,
"trailing": true,
"undef": true,
"unused": "vars",
"maxerr": 10000,
"globals": {
"angular": false,
"Brand": false,
"Constant": false,
"CommonUnit": false,
"Notification": false,
"Organization": false,
"Shop": false,
"Website": false,
"Product": false,
"productReference": false,
"ProductHasLabel": false,
"ProductNutritionalQuantity": false,
"ProductIsSubstitutableWithProduct": false,
"ProductIsComplementaryWithProduct": false,
"ProductIsRequiredInRecipe": false,
"ProductIsMadeOfProduct": false,
"ProductStandardQuantity": false,
"User": false
}
}