From d0870419f00c796b59bc75dca0c8213cc615cd2c Mon Sep 17 00:00:00 2001 From: sianida26 Date: Wed, 28 Feb 2024 10:09:03 +0700 Subject: [PATCH] Add no unused vars --- .eslintrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index b2bcd8c..3e8ce47 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -5,6 +5,7 @@ "project": "./tsconfig.json" }, "rules": { - "@typescript-eslint/no-floating-promises": "warn" + "@typescript-eslint/no-floating-promises": "warn", + "@typescript-eslint/no-unused-vars": "warn" } }