diff options
| author | MohamedBassem <me@mbassem.com> | 2024-02-06 13:12:21 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-02-06 13:12:21 +0000 |
| commit | 4c901d073376ab9fd37284801011a12261d5963d (patch) | |
| tree | 537eaea0b85c057dd1b7490afe755c634febece0 /web/.eslintrc.json | |
| parent | 2518a99d1c296dc838edc2330dc6eb6fe5aead8e (diff) | |
| download | karakeep-4c901d073376ab9fd37284801011a12261d5963d.tar.zst | |
Linting and formatting
Diffstat (limited to '')
| -rw-r--r-- | web/.eslintrc.json | 18 |
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" + } } |
