UNPKG

@pbr1111/vite-plugin-biome

Version:
17 lines (14 loc) 363 B
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 };