unplugin-oxlint
Version:
A universal bundler plugin for integrating the Oxlint linter into your project.
21 lines (20 loc) • 427 B
text/typescript
import { n as OxlintOptions } from "./types-o3El42no.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;
export = _default;