diff --git a/mirror-2/.eslintrc.json b/mirror-2/.eslintrc.json index 443e8777..16555d22 100644 --- a/mirror-2/.eslintrc.json +++ b/mirror-2/.eslintrc.json @@ -1,8 +1,18 @@ { - "extends": ["next/core-web-vitals", "next/typescript", "eslint:recommended"], + "extends": ["next/core-web-vitals", "next/typescript"], "rules": { "@typescript-eslint/no-explicit-any": "off", - "@typescript-eslint/no-unused-vars": "warn", - "no-unused-vars": "warn" - } + "@typescript-eslint/no-unused-vars": "off" + }, + + "overrides": [ + { + "files": ["*.js", "*.jsx"], + "excludedFiles": [], + "extends": ["eslint:recommended"], + "rules": { + "no-unused-vars": "warn" + } + } + ] }