-
Notifications
You must be signed in to change notification settings - Fork 26
/
.jshintrc
43 lines (43 loc) · 1021 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
38
39
40
41
42
43
{
"node": true,
"bitwise": true,
"browser": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"esnext": true,
"immed": true,
"indent": 2,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"smarttabs": true,
"strict": false,
"sub": true,
"trailing": true,
"undef": true,
"unused": true,
"jquery": true,
"globalstrict": true,
"laxcomma": true,
"predef": {
"__dirname": true,
"include": true,
"inspect": true,
"module": true,
"describe":true,
"before":true,
"after":true,
"beforeEach":true,
"it": true,
"angular": true,
"Reconfig": true,
"vpo": true,
"_": true,
"alert": true,
"confirm": true,
"maxConcurrentBuilds": true
}
}