aboutsummaryrefslogtreecommitdiffstats
path: root/tooling/oxlint/oxlint-base.json
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-06-22 12:38:24 +0000
committerMohamed Bassem <me@mbassem.com>2025-06-22 12:38:24 +0000
commitf7b31938159274443a288416fadf771c67640fba (patch)
treec98793a22d92583f62ee08a4bba47bb29f0012d0 /tooling/oxlint/oxlint-base.json
parentd5e2973dce617f451e4eb07491b3a6874ea6ca47 (diff)
downloadkarakeep-f7b31938159274443a288416fadf771c67640fba.tar.zst
chore: More oxlint changes
Diffstat (limited to 'tooling/oxlint/oxlint-base.json')
-rw-r--r--tooling/oxlint/oxlint-base.json17
1 files changed, 3 insertions, 14 deletions
diff --git a/tooling/oxlint/oxlint-base.json b/tooling/oxlint/oxlint-base.json
index 557afe00..83ae8634 100644
--- a/tooling/oxlint/oxlint-base.json
+++ b/tooling/oxlint/oxlint-base.json
@@ -2,7 +2,9 @@
"$schema": "../../node_modules/oxlint/configuration_schema.json",
"plugins": [
"typescript",
- "import"
+ "import",
+ "unicorn",
+ "oxc"
],
"rules": {
"for-direction": "error",
@@ -108,20 +110,7 @@
{
"files": ["**/*"],
"rules": {
- "no-class-assign": "off",
- "no-const-assign": "off",
- "no-dupe-class-members": "off",
- "no-dupe-keys": "off",
- "no-func-assign": "off",
- "no-import-assign": "off",
- "no-new-native-nonconstructor": "off",
- "no-obj-calls": "off",
- "no-redeclare": "off",
- "no-setter-return": "off",
- "no-this-before-super": "off",
- "no-unsafe-negation": "off",
"no-var": "error",
- "no-with": "off",
"prefer-rest-params": "error",
"prefer-spread": "error"
}