From eed1f8881036788204315c470eb4b464f6d506a6 Mon Sep 17 00:00:00 2001 From: Sysix Date: Thu, 28 Nov 2024 20:49:23 +0100 Subject: [PATCH] feat: support `overrides` in `buildFromOxlintConfig(File)` --- src/build-from-oxlint-config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/build-from-oxlint-config.ts b/src/build-from-oxlint-config.ts index b51cdbe..9456a00 100644 --- a/src/build-from-oxlint-config.ts +++ b/src/build-from-oxlint-config.ts @@ -204,6 +204,7 @@ const handleOverridesScope = ( const rules = readRulesFromConfig(override); if (rules !== undefined) { + // ToDo -- when off, we should enable the default settings handleRulesScope(rules, eslintRules); }