@pbr1111/vite-plugin-biome
Version:
Vite plugin to run biome.js
17 lines (14 loc) • 363 B
text/typescript
import { Plugin } from 'vite';
type Mode = "lint" | "format" | "check";
type Options = {
mode?: Mode;
path?: string;
failOnError?: boolean;
errorOnWarnings?: boolean;
applyFixes?: boolean;
useServer?: boolean;
verbose?: boolean;
args?: string;
};
declare const biomePlugin: (options?: Options) => Plugin;
export { biomePlugin };