|
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 | 17 | "max-classes-per-file": false, |
23 | 18 | "max-line-length": [ |
24 | 19 | true, |
|
36 | 31 | ] |
37 | 32 | } |
38 | 33 | ], |
39 | | - "new-parens": false, |
40 | | - "no-angle-bracket-type-assertion": false, |
41 | | - "no-conditional-assignment": false, |
42 | 34 | "no-consecutive-blank-lines": false, |
43 | 35 | "no-console": [ |
44 | 36 | true, |
|
53 | 45 | true, |
54 | 46 | "ignore-params" |
55 | 47 | ], |
56 | | - "no-namespace": false, |
57 | 48 | "no-non-null-assertion": true, |
58 | 49 | "no-redundant-jsdoc": true, |
59 | | - "no-reference": false, |
60 | | - "no-reference-import": false, |
61 | | - "no-string-literal": false, |
62 | 50 | "no-switch-case-fall-through": true, |
63 | | - "no-unsafe-finally": false, |
64 | 51 | "no-use-before-declare": true, |
65 | 52 | "no-var-requires": false, |
66 | | - "object-literal-key-quotes": false, |
67 | | - "object-literal-shorthand": false, |
68 | | - "object-literal-sort-keys": false, |
69 | | - "one-line": [ |
| 53 | + "object-literal-key-quotes": [ |
70 | 54 | true, |
71 | | - "check-open-brace", |
72 | | - "check-catch", |
73 | | - "check-else", |
74 | | - "check-whitespace" |
| 55 | + "as-needed" |
75 | 56 | ], |
76 | | - "one-variable-per-declaration": false, |
77 | | - "only-arrow-functions": false, |
| 57 | + "object-literal-sort-keys": false, |
78 | 58 | "ordered-imports": false, |
79 | | - "prefer-for-of": false, |
80 | 59 | "quotemark": [ |
81 | 60 | true, |
82 | 61 | "single" |
83 | 62 | ], |
84 | | - "space-before-function-paren": false, |
85 | 63 | "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 | 64 | "no-output-on-prefix": true, |
107 | 65 | "use-input-property-decorator": true, |
108 | 66 | "use-output-property-decorator": true, |
|
0 commit comments