UNPKG

@fe-fast/code-sweeper

Version:

A lightweight JavaScript/TypeScript code cleaning tool

12 lines (11 loc) 400 B
import { CleanRules } from '@fe-fast/code-sweeper'; import type { Plugin } from 'rollup'; export interface CodeSweeperRollupPluginOptions { include?: string[]; exclude?: string[]; dryRun?: boolean; skipConfirmation?: boolean; rules?: Partial<CleanRules>; } export default function codeSweeperPlugin(options?: CodeSweeperRollupPluginOptions): Plugin; export { codeSweeperPlugin };