diff options
| author | MohamedBassem <me@mbassem.com> | 2024-02-07 02:48:38 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-02-07 02:48:38 +0000 |
| commit | daebbf0154a290fb690ed94fca23377e0f739f53 (patch) | |
| tree | d02b91093a976704a558971490cf2e6406c48b94 /.eslintrc.json | |
| parent | c3ecb08ec0addfb02e2da7e79e168ca17d38cd3b (diff) | |
| download | karakeep-daebbf0154a290fb690ed94fca23377e0f739f53.tar.zst | |
[ui] Very first draft of the link grid
Diffstat (limited to '.eslintrc.json')
| -rw-r--r-- | .eslintrc.json | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index c580ca7e..26977516 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -11,6 +11,14 @@ "ignorePatterns": ["postcss.config.js"], "rules": { "no-redeclare": "off", - "@next/next/no-html-link-for-pages": "off" + "@next/next/no-html-link-for-pages": "off", + "no-undef": "off", + "no-unused-vars": [ + "error", + { + "varsIgnorePattern": "^_", + "argsIgnorePattern": "^_" + } + ] } } |
