Browse Source

update outdated eslint rules

AykutSarac 2 years ago
parent
commit
1a4236f8fb
1 changed files with 1 additions and 8 deletions
  1. 1 8
      .eslintrc.json

+ 1 - 8
.eslintrc.json

@@ -4,12 +4,5 @@
     "unused-imports/no-unused-imports": "error"
   },
   "extends": ["next/core-web-vitals"],
-  "plugins": ["testing-library", "unused-imports"],
-  "overrides": [
-    // Only uses Testing Library lint rules in test files
-    {
-      "files": ["**/__tests__/**/*.[jt]s?(x)", "**/?(*.)+(spec|test).[jt]s?(x)"],
-      "extends": ["plugin:testing-library/react"]
-    }
-  ]
+  "plugins": ["unused-imports"]
 }