From 63b63ffa9c3f39c7de3436c6155b59548488a9eb Mon Sep 17 00:00:00 2001 From: Miodec Date: Sat, 14 Jun 2025 15:33:52 +0200 Subject: [PATCH] chore: update plugins overrides --- backend/.oxlintrc.json | 11 ++++++++++- frontend/.oxlintrc.json | 10 ++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/backend/.oxlintrc.json b/backend/.oxlintrc.json index b36f88c5c..2a232f066 100644 --- a/backend/.oxlintrc.json +++ b/backend/.oxlintrc.json @@ -6,7 +6,16 @@ "overrides": [ { "files": ["__tests__/**"], - "plugins": ["jest", "vitest"], + "plugins": [ + "typescript", + "unicorn", + "oxc", + "import", + "node", + "promise", + "jest", + "vitest" + ], "rules": { "no-explicit-any": "allow", "explicit-function-return-type": "off", diff --git a/frontend/.oxlintrc.json b/frontend/.oxlintrc.json index 2507e98bd..41aae1d34 100644 --- a/frontend/.oxlintrc.json +++ b/frontend/.oxlintrc.json @@ -6,6 +6,16 @@ "overrides": [ { "files": ["__tests__/**/*.ts"], + "plugins": [ + "typescript", + "unicorn", + "oxc", + "import", + "node", + "promise", + "jest", + "vitest" + ], "rules": { "no-explicit-any": "allow", "explicit-function-return-type": "off",