From b0da28c38f69c11b5ffac855851dc381d6ea4441 Mon Sep 17 00:00:00 2001 From: gautamjajoo Date: Mon, 26 Jul 2021 13:09:00 +0530 Subject: [PATCH] add no-unused-variable in tslint --- frontend_v2/tslint.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend_v2/tslint.json b/frontend_v2/tslint.json index 2c7cc88920..b66f76a483 100644 --- a/frontend_v2/tslint.json +++ b/frontend_v2/tslint.json @@ -36,6 +36,8 @@ "no-switch-case-fall-through": true, "no-unnecessary-initializer": true, "no-unused-expression": true, + "no-unused-variable": true, + "noUnusedLocals": true, "no-use-before-declare": true, "no-var-keyword": true, "object-literal-sort-keys": false,