From 7ec34ea7c4b562b454e86ada4f1cd915a3677d76 Mon Sep 17 00:00:00 2001 From: donmahallem Date: Mon, 23 Sep 2019 15:12:40 +0200 Subject: [PATCH] fix renamed tslint rules https://github.com/mgechev/codelyzer/issues/791#issuecomment-474031004 --- tslint.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tslint.json b/tslint.json index 77ac3c94..f91da3f4 100644 --- a/tslint.json +++ b/tslint.json @@ -117,9 +117,9 @@ "check-type" ], "no-output-on-prefix": true, - "use-input-property-decorator": true, - "use-output-property-decorator": true, - "use-host-property-decorator": true, + "no-inputs-metadata-property": true, + "no-outputs-metadata-property": true, + "no-host-metadata-property": true, "no-input-rename": true, "no-output-rename": true, "use-life-cycle-interface": true,