Skip to content

Commit

Permalink
feat(@schematics/angular): use more codelyzer rules
Browse files Browse the repository at this point in the history
  • Loading branch information
cexbrayat authored and alexeagle committed Mar 19, 2019
1 parent 8f77d67 commit 12b5db4
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions packages/schematics/angular/workspace/files/tslint.json.template
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,20 @@
"single"
],
"trailing-comma": false,
"no-output-on-prefix": true,
"use-input-property-decorator": true,
"use-output-property-decorator": true,
"use-host-property-decorator": true,
"banana-in-box": true,
"component-class-suffix": true,
"contextual-life-cycle": true,
"directive-class-suffix": true,
"no-conflicting-life-cycle-hooks": true,
"no-input-rename": true,
"no-output-named-after-standard-event": true,
"no-output-on-prefix": true,
"no-output-rename": true,
"templates-no-negated-async": true,
"use-host-property-decorator": true,
"use-input-property-decorator": true,
"use-life-cycle-interface": true,
"use-pipe-transform-interface": true,
"component-class-suffix": true,
"directive-class-suffix": true
"use-output-property-decorator": true,
"use-pipe-transform-interface": true
}
}

0 comments on commit 12b5db4

Please sign in to comment.