aboutsummaryrefslogtreecommitdiffstats
path: root/web/.eslintrc.json
diff options
context:
space:
mode:
Diffstat (limited to 'web/.eslintrc.json')
-rw-r--r--web/.eslintrc.json18
1 files changed, 6 insertions, 12 deletions
diff --git a/web/.eslintrc.json b/web/.eslintrc.json
index d971ae2a..c580ca7e 100644
--- a/web/.eslintrc.json
+++ b/web/.eslintrc.json
@@ -1,13 +1,4 @@
{
- "parser": "@typescript-eslint/parser",
- "parserOptions": {
- "project": "./tsconfig.json",
- "ecmaFeatures": {
- "jsx": true
- },
- "ecmaVersion": 12,
- "sourceType": "module"
- },
"extends": [
"next/core-web-vitals",
"eslint:recommended",
@@ -15,8 +6,11 @@
"plugin:react-hooks/recommended",
"plugin:@next/next/recommended",
"next",
- "plugin:@typescript-eslint/recommended",
- "plugin:@typescript-eslint/recommended-requiring-type-checking",
"prettier"
- ]
+ ],
+ "ignorePatterns": ["postcss.config.js"],
+ "rules": {
+ "no-redeclare": "off",
+ "@next/next/no-html-link-for-pages": "off"
+ }
}