From 0ed079f7b05d79e9f3cf2a99eb0ced6c6abdc38f Mon Sep 17 00:00:00 2001 From: Stefan Schake Date: Tue, 15 Jan 2019 17:53:58 +0100 Subject: [PATCH] doc(readme): don't recommend deprecated angular-whitespace (#733) Since angular-whitespace was deprecated and has known issues that won't be fixed, we should not recommend it in a default configuration. --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index ef6753b54..cb9f8cb40 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,6 @@ Create the following `tslint.json` file like: { "extends": ["codelyzer"], "rules": { - "angular-whitespace": [true, "check-interpolation", "check-semicolon"], "banana-in-box": true, "templates-no-negated-async": true, "directive-selector": [true, "attribute", "sg", "camelCase"], @@ -158,7 +157,6 @@ Now create the following `tslint.json` file where your `node_modules` directory { "rulesDirectory": ["node_modules/codelyzer"], "rules": { - "angular-whitespace": [true, "check-interpolation", "check-semicolon"], "banana-in-box": true, "templates-no-negated-async": true, "directive-selector": [true, "attribute", "sg", "camelCase"], @@ -264,8 +262,6 @@ Below you can find a recommended configuration which is based on the [Angular St "directive-selector": [true, "attribute", ["dir-prefix1", "dir-prefix2"], "camelCase"], "component-selector": [true, "element", ["cmp-prefix1", "cmp-prefix2"], "kebab-case"], - "angular-whitespace": [true, "check-interpolation", "check-semicolon"], - "use-input-property-decorator": true, "use-output-property-decorator": true, "use-host-property-decorator": true,