From 0f4adc44adad9330aca3b2cadb8bc6706b8a5434 Mon Sep 17 00:00:00 2001 From: Tiago Melo Date: Sat, 3 Feb 2018 19:01:23 +0100 Subject: [PATCH] mgr/dashboard_v2: add missing codealizer recommended rules Signed-off-by: Tiago Melo --- src/pybind/mgr/dashboard_v2/frontend/tslint.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/pybind/mgr/dashboard_v2/frontend/tslint.json b/src/pybind/mgr/dashboard_v2/frontend/tslint.json index 341e8f9cd5e68..34c2b8f0ed88c 100644 --- a/src/pybind/mgr/dashboard_v2/frontend/tslint.json +++ b/src/pybind/mgr/dashboard_v2/frontend/tslint.json @@ -131,16 +131,19 @@ "cd", "kebab-case" ], - "angular-whitespace": [true, "check-interpolation"], + "angular-whitespace": [true, "check-interpolation", "check-semicolon"], "no-output-on-prefix": true, "use-input-property-decorator": true, "use-output-property-decorator": true, "use-host-property-decorator": true, + "no-attribute-parameter-decorator": true, "no-input-rename": true, "no-output-rename": true, "use-life-cycle-interface": true, "use-pipe-transform-interface": true, "component-class-suffix": true, - "directive-class-suffix": true + "directive-class-suffix": true, + "no-forward-ref": true, + "no-output-named-after-standard-event": true } } -- 2.39.5