@@ -97,6 +97,10 @@ Create the following `tslint.json` file like:
97
97
"templates-no-negated-async" : true ,
98
98
"directive-selector" : [true , " attribute" , " sg" , " camelCase" ],
99
99
"component-selector" : [true , " element" , " sg" , " kebab-case" ],
100
+ "max-inline-declarations" : true ,
101
+ "prefer-output-readonly" : true ,
102
+ "no-conflicting-life-cycle-hooks" : true ,
103
+ "enforce-component-selector: true,
100
104
"use-input-property-decorator" : true ,
101
105
"use-output-property-decorator" : true ,
102
106
"use-host-property-decorator" : true ,
@@ -151,6 +155,10 @@ Now create the following `tslint.json` file where your `node_modules` directory
151
155
"templates-no-negated-async" : true ,
152
156
"directive-selector" : [true , " attribute" , " sg" , " camelCase" ],
153
157
"component-selector" : [true , " element" , " sg" , " kebab-case" ],
158
+ "max-inline-declarations" : true ,
159
+ "prefer-output-readonly" : true ,
160
+ "no-conflicting-life-cycle-hooks" : true ,
161
+ "enforce-component-selector: true,
154
162
"use-input-property-decorator" : true ,
155
163
"use-output-property-decorator" : true ,
156
164
"use-host-property-decorator" : true ,
@@ -257,6 +265,10 @@ Below you can find a recommended configuration which is based on the [Angular St
257
265
" use-life-cycle-interface" : true ,
258
266
" use-pipe-transform-interface" : true ,
259
267
" no-output-named-after-standard-event" : true ,
268
+ " max-inline-declarations" : true ,
269
+ " prefer-output-readonly" : true ,
270
+ " no-conflicting-life-cycle-hooks" : true ,
271
+ " enforce-component-selector: true,
260
272
261
273
// [ENABLED, " SUFFIX " ]
262
274
// Where " SUFFIX " is your custom suffix, for instance " Page" for Ionic 2 components.
@@ -294,6 +306,10 @@ Below you can find a recommended configuration which is based on the [Angular St
294
306
| `trackBy-function` | Stable |
295
307
| `import-destructuring-spacing` | Stable |
296
308
| `no-output-named-after-standard-event` | Stable |
309
+ | `max-inline-declarations | Stable |
310
+ | `prefer-output-readonly` | Stable |
311
+ | `no-conflicting-life-cycle-hooks` | Stable |
312
+ | `enforce-component-selector` | Stable |
297
313
| `i18n` | *Experimental* |
298
314
| `no-unused-css` | *Experimental* |
299
315
| `angular-whitespace` | *Experimental* |
0 commit comments