|
4 | 4 | "codelyzer"
|
5 | 5 | ],
|
6 | 6 | "rules": {
|
7 |
| - "adjacent-overload-signatures": false, |
8 |
| - "align": false, |
9 | 7 | "array-type": false,
|
10 | 8 | "arrow-parens": false,
|
11 |
| - "ban-types": false, |
12 | 9 | "deprecation": {
|
13 | 10 | "severity": "warn"
|
14 | 11 | },
|
15 |
| - "function-constructor": false, |
16 | 12 | "import-blacklist": [
|
17 | 13 | true,
|
18 | 14 | "rxjs/Rx"
|
19 | 15 | ],
|
20 | 16 | "interface-name": false,
|
21 |
| - "jsdoc-format": false, |
22 |
| - "max-classes-per-file": false, |
23 | 17 | "max-line-length": [
|
24 | 18 | true,
|
25 | 19 | 140
|
|
36 | 30 | ]
|
37 | 31 | }
|
38 | 32 | ],
|
39 |
| - "new-parens": false, |
40 |
| - "no-angle-bracket-type-assertion": false, |
41 |
| - "no-conditional-assignment": false, |
42 | 33 | "no-consecutive-blank-lines": false,
|
43 | 34 | "no-console": [
|
44 | 35 | true,
|
|
53 | 44 | true,
|
54 | 45 | "ignore-params"
|
55 | 46 | ],
|
56 |
| - "no-namespace": false, |
57 | 47 | "no-non-null-assertion": true,
|
58 | 48 | "no-redundant-jsdoc": true,
|
59 |
| - "no-reference": false, |
60 |
| - "no-reference-import": false, |
61 |
| - "no-string-literal": false, |
62 | 49 | "no-switch-case-fall-through": true,
|
63 |
| - "no-unsafe-finally": false, |
64 | 50 | "no-use-before-declare": true,
|
65 |
| - "no-var-requires": false, |
66 |
| - "object-literal-key-quotes": false, |
67 |
| - "object-literal-shorthand": false, |
68 |
| - "object-literal-sort-keys": false, |
69 |
| - "one-line": [ |
| 51 | + "object-literal-key-quotes": [ |
70 | 52 | true,
|
71 |
| - "check-open-brace", |
72 |
| - "check-catch", |
73 |
| - "check-else", |
74 |
| - "check-whitespace" |
| 53 | + "as-needed" |
75 | 54 | ],
|
76 |
| - "one-variable-per-declaration": false, |
77 |
| - "only-arrow-functions": false, |
| 55 | + "object-literal-sort-keys": false, |
78 | 56 | "ordered-imports": false,
|
79 |
| - "prefer-for-of": false, |
80 | 57 | "quotemark": [
|
81 | 58 | true,
|
82 | 59 | "single"
|
83 | 60 | ],
|
84 |
| - "space-before-function-paren": false, |
85 | 61 | "trailing-comma": false,
|
86 |
| - "typedef-whitespace": [ |
87 |
| - true, |
88 |
| - { |
89 |
| - "call-signature": "nospace", |
90 |
| - "index-signature": "nospace", |
91 |
| - "parameter": "nospace", |
92 |
| - "property-declaration": "nospace", |
93 |
| - "variable-declaration": "nospace" |
94 |
| - } |
95 |
| - ], |
96 |
| - "use-isnan": false, |
97 |
| - "variable-name": false, |
98 |
| - "whitespace": [ |
99 |
| - true, |
100 |
| - "check-branch", |
101 |
| - "check-decl", |
102 |
| - "check-operator", |
103 |
| - "check-separator", |
104 |
| - "check-type" |
105 |
| - ], |
106 | 62 | "no-output-on-prefix": true,
|
107 | 63 | "use-input-property-decorator": true,
|
108 | 64 | "use-output-property-decorator": true,
|
|
0 commit comments