aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.json
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-02-07 02:48:38 +0000
committerMohamedBassem <me@mbassem.com>2024-02-07 02:48:38 +0000
commitdaebbf0154a290fb690ed94fca23377e0f739f53 (patch)
treed02b91093a976704a558971490cf2e6406c48b94 /.eslintrc.json
parentc3ecb08ec0addfb02e2da7e79e168ca17d38cd3b (diff)
downloadkarakeep-daebbf0154a290fb690ed94fca23377e0f739f53.tar.zst
[ui] Very first draft of the link grid
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json10
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": "^_"
+ }
+ ]
}
}