unplugin-oxlint
Version:
A universal bundler plugin for integrating the Oxlint linter into your project.
26 lines (24 loc) • 523 B
text/typescript
import { OxlintOptions } from "./types-CNpAb7i1.cjs";
import * as rollup8 from "rollup";
//#region src/rollup.d.ts
/**
* This entry file is for Rollup plugin.
*
* @module
*/
/**
* Rollup plugin
*
* @example
* ```ts
* // rollup.config.js
* import Oxlint from 'unplugin-oxlint/rollup'
*
* export default {
* plugins: [Oxlint()],
* }
* ```
*/
declare const _default: (options?: Partial<OxlintOptions> | undefined) => rollup8.Plugin<any> | rollup8.Plugin<any>[];
//#endregion
export { _default as default };