From 510cebb67b12c175d39ea12948a2d68008a7afcb Mon Sep 17 00:00:00 2001 From: Cyrille Tuzi Date: Thu, 23 Nov 2017 09:14:57 +0100 Subject: [PATCH] fix(@schematics/angular): revert breaking angular-whitespace new lint rule While updating to Codelyzer 4.0, #257 also added a new `angular-whitespace` rule. This must be reverted because : - it is a breaking change : existing project are now failing on lint ; - it is opinionated (it is not in official Angular style guide) and so should not be forced ; - it is the contrary of what is done in the official Angular doc and in the style guide itself. --- packages/schematics/angular/application/files/tslint.json | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/schematics/angular/application/files/tslint.json b/packages/schematics/angular/application/files/tslint.json index 1f8ed16bed..d0d26b33e1 100644 --- a/packages/schematics/angular/application/files/tslint.json +++ b/packages/schematics/angular/application/files/tslint.json @@ -127,7 +127,6 @@ "<%= prefix %>", "kebab-case" ], - "angular-whitespace": [true, "check-interpolation"], "no-output-on-prefix": true, "use-input-property-decorator": true, "use-output-property-decorator": true,