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
| {
| "node": true,
|
| "maxparams": 5,
| "maxdepth": 5,
| "maxstatements": 40,
| "maxcomplexity": 10,
|
| "bitwise": false,
| "boss" : false,
| "curly": true,
| "eqeqeq": true,
| "forin": true,
| "globalstrict": true,
| "immed": true,
| "indent": 4,
| "latedef": "nofunc",
| "laxcomma": true,
| "loopfunc": true,
| "nonew": true,
| "multistr": true,
| "newcap": true,
| "quotmark": true,
| "strict": true,
| "trailing": true,
| "undef": true,
| "unused": true
| }
|
|