From 5b5422a52f68c532bb5b3c3d5544af76c89d615c Mon Sep 17 00:00:00 2001 From: Divyansh Singh <40380293+brc-dd@users.noreply.github.com> Date: Tue, 19 Nov 2024 10:34:29 +0530 Subject: [PATCH] chore: adjust eslint rules --- .eslintrc.cjs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index cdef3cc8..8fcdfef0 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -9,6 +9,9 @@ module.exports = { rules: { 'vue/no-template-shadow': 'off', - 'no-console': 'warn' + 'no-console': 'warn', + '@typescript-eslint/no-unused-vars': 'off', + 'unused-imports/no-unused-imports': 'warn', + 'unused-imports/no-unused-vars': 'warn' } }