22 lines
604 B
TypeScript
22 lines
604 B
TypeScript
import type { OxlintConfig } from 'oxlint';
|
|
|
|
import { defineConfig as defineOxlintConfig } from 'oxlint';
|
|
|
|
import { mergeOxlintConfigs, oxlintConfig } from './configs';
|
|
|
|
type VbenOxlintConfig = Omit<OxlintConfig, 'extends'> & {
|
|
extends?: OxlintConfig[];
|
|
};
|
|
|
|
function defineConfig(config: VbenOxlintConfig = {}) {
|
|
const { extends: extendedConfigs = [], ...restConfig } = config;
|
|
|
|
return defineOxlintConfig(
|
|
mergeOxlintConfigs(oxlintConfig, ...extendedConfigs, restConfig),
|
|
);
|
|
}
|
|
|
|
export { defineConfig, oxlintConfig };
|
|
export * from './configs';
|
|
export type { OxlintConfig, VbenOxlintConfig };
|