| 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
 | | { |  |   "extends": "tslint:recommended", |  |   "rules": { |  |     "no-consecutive-blank-lines": [ |  |       true, |  |       2 |  |     ], |  |     "ordered-imports": false, |  |     "no-bitwise": false, |  |     "triple-equals": false, |  |     "no-empty": false, |  |     "no-console": false, |  |     "no-conditional-assignment": false, |  |     "typedef-whitespace": { |  |       "options": [ |  |         { |  |           "call-signature": "nospace", |  |           "index-signature": "nospace", |  |           "parameter": "nospace", |  |           "property-declaration": "nospace", |  |           "variable-declaration": "nospace" |  |         }, |  |         { |  |           "call-signature": "nospace", |  |           "index-signature": "nospace", |  |           "parameter": "nospace", |  |           "property-declaration": "nospace", |  |           "variable-declaration": "nospace" |  |         } |  |       ] |  |     }, |  |     "whitespace": { |  |       "options": [ |  |         "check-branch", |  |         "check-decl", |  |         "check-operator", |  |         "check-separator", |  |         "check-typecast" |  |       ] |  |     }, |  |     "max-classes-per-file": false, |  |     "trailing-comma": { |  |       "options": { |  |         "singleline": "never" |  |       } |  |     }, |  |     "variable-name": { |  |       "options": [ |  |         "ban-keywords", |  |         "allow-snake-case" |  |       ] |  |     }, |  |     "member-ordering": false, |  |     "max-line-length": false, |  |     "object-literal-sort-keys": false, |  |     "only-arrow-functions": false, |  |     "space-before-function-paren": { |  |       "options": { |  |         "anonymous": "always", |  |         "asyncArrow": "always", |  |         "constructor": "never", |  |         "method": "never", |  |         "named": "never" |  |       } |  |     }, |  |     "prefer-for-of": false |  |   } |  | } | 
 |