From 18afa0070ef8bc90095a0602f3957a2ce573157c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=84=EB=AF=BC=EC=B0=AC?= <132974029+wjzlskxk@users.noreply.github.com> Date: Mon, 18 Nov 2024 13:18:33 +0900 Subject: [PATCH] Update .eslintrc.json --- .eslintrc.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 0edc537..61a5833 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -9,11 +9,11 @@ "rules": { "no-unused-vars": "off", "no-console": "off", - "unused-imports/no-unused-imports": "error", "unused-imports/no-unused-vars": [ "warn", { "vars": "all", "varsIgnorePattern": "^_", "args": "after-used", "argsIgnorePattern": "^_" } ], - "@typescript-eslint/no-non-null-asserted-optional-chain": "off" + "@typescript-eslint/no-non-null-asserted-optional-chain": "off", + "@typescript-eslint/no-extra-non-null-assertion": "off" } }