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",