Skip to content

Commit 6760ee9

Browse files
committed
fix(cli/lint): Remove defineConfig export from oxlint
1 parent d304770 commit 6760ee9

1 file changed

Lines changed: 4 additions & 13 deletions

File tree

packages/cli/src/lint.ts

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
export {
2-
type AllowWarnDeny,
3-
type DummyRule,
4-
type DummyRuleMap,
5-
type ExternalPluginEntry,
6-
type ExternalPluginsConfig,
7-
type OxlintConfig,
8-
type OxlintEnv,
9-
type OxlintGlobals,
10-
type OxlintOverride,
11-
type RuleCategories,
12-
defineConfig,
13-
} from 'oxlint';
1+
// For now, `defineConfig()` is the only non-type exports from `oxlint`,
2+
// but in Vite+, users should use `defineConfig()` from 'vite-plus`.
3+
4+
export type * from 'oxlint';

0 commit comments

Comments
 (0)