From ad851375ddee84aab8042a96b5b1a4e6660acd01 Mon Sep 17 00:00:00 2001 From: shadcn Date: Mon, 16 Feb 2026 23:12:04 +0400 Subject: [PATCH] fix --- apps/v4/eslint.config.mjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/v4/eslint.config.mjs b/apps/v4/eslint.config.mjs index 47c1082949..b5dc2d20b2 100644 --- a/apps/v4/eslint.config.mjs +++ b/apps/v4/eslint.config.mjs @@ -2,6 +2,8 @@ import nextVitals from "eslint-config-next/core-web-vitals" import tseslint from "typescript-eslint" const eslintConfig = tseslint.config( + // Remove the @typescript-eslint plugin from next/typescript to prevent + // duplicate registration with tseslint.configs.recommended. ...nextVitals.map((config) => config.name === "next/typescript" ? { ...config, plugins: {} }