From eea2fecae0fee78c7cf34601d9a9b5de18728811 Mon Sep 17 00:00:00 2001 From: Felix <188768+fb55@users.noreply.github.com> Date: Fri, 9 Aug 2024 20:00:41 +0100 Subject: [PATCH] fix(eslint): Disable misfiring lint rule --- .eslintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.json b/.eslintrc.json index 7f1b6c8a91..7dd762bd70 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -128,6 +128,7 @@ "files": "*.spec.ts", "extends": "plugin:vitest/legacy-recommended", "rules": { + "n/no-unpublished-import": 0, "@typescript-eslint/no-explicit-any": 0 } }