|
11 | 11 | "check-space"
|
12 | 12 | ],
|
13 | 13 | "curly": true,
|
14 |
| - "deprecation": { |
15 |
| - "severity": "warn" |
16 |
| - }, |
17 | 14 | "eofline": true,
|
18 | 15 | "forin": true,
|
19 | 16 | "import-blacklist": [
|
20 |
| - true, |
21 |
| - "rxjs/Rx" |
| 17 | + true |
22 | 18 | ],
|
23 | 19 | "import-spacing": true,
|
24 | 20 | "indent": [
|
|
65 | 61 | ],
|
66 | 62 | "no-misused-new": true,
|
67 | 63 | "no-non-null-assertion": true,
|
68 |
| - "no-redundant-jsdoc": true, |
69 | 64 | "no-shadowed-variable": true,
|
70 | 65 | "no-string-literal": false,
|
71 | 66 | "no-string-throw": true,
|
72 | 67 | "no-switch-case-fall-through": true,
|
73 |
| - "no-trailing-whitespace": true, |
| 68 | + "no-trailing-whitespace": false, |
74 | 69 | "no-unnecessary-initializer": true,
|
75 | 70 | "no-unused-expression": true,
|
76 | 71 | "no-use-before-declare": true,
|
|
85 | 80 | ],
|
86 | 81 | "prefer-const": true,
|
87 | 82 | "quotemark": [
|
88 |
| - true, |
| 83 | + false, |
89 | 84 | "single"
|
90 | 85 | ],
|
91 | 86 | "radix": true,
|
|
107 | 102 | "variable-declaration": "nospace"
|
108 | 103 | }
|
109 | 104 | ],
|
| 105 | + "typeof-compare": true, |
110 | 106 | "unified-signatures": true,
|
111 | 107 | "variable-name": false,
|
112 | 108 | "whitespace": [
|
|
117 | 113 | "check-separator",
|
118 | 114 | "check-type"
|
119 | 115 | ],
|
120 |
| - "no-output-on-prefix": true, |
| 116 | + "directive-selector": [ |
| 117 | + true, |
| 118 | + "attribute", |
| 119 | + "app", |
| 120 | + "camelCase" |
| 121 | + ], |
| 122 | + "component-selector": [ |
| 123 | + true, |
| 124 | + "element", |
| 125 | + "app", |
| 126 | + "kebab-case" |
| 127 | + ], |
121 | 128 | "use-input-property-decorator": true,
|
122 | 129 | "use-output-property-decorator": true,
|
123 | 130 | "use-host-property-decorator": true,
|
|
126 | 133 | "use-life-cycle-interface": true,
|
127 | 134 | "use-pipe-transform-interface": true,
|
128 | 135 | "component-class-suffix": true,
|
129 |
| - "directive-class-suffix": true |
130 |
| - } |
| 136 | + "directive-class-suffix": true, |
| 137 | + "no-access-missing-member": true, |
| 138 | + "templates-use-public": true, |
| 139 | + "invoke-injectable": true |
| 140 | + }, |
| 141 | + "extends": [ |
| 142 | + "tslint:latest", |
| 143 | + "tslint-config-prettier" |
| 144 | + ] |
131 | 145 | }
|
0 commit comments