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