123456789101112131415161718192021222324252627282930313233343536373839 |
- /**
- * @param {string|undefined} key
- * @param {Options} options
- * @param {Compilation} compilation
- * @returns {{lint: Linter, report: Reporter, threads: number}}
- */
- export default function linter(
- key: string | undefined,
- options: Options,
- compilation: Compilation
- ): {
- lint: Linter;
- report: Reporter;
- threads: number;
- };
- export type ESLint = import('eslint').ESLint;
- export type Formatter = import('eslint').ESLint.Formatter;
- export type LintResult = import('eslint').ESLint.LintResult;
- export type Compiler = import('webpack').Compiler;
- export type Compilation = import('webpack').Compilation;
- export type Source = import('webpack-sources/lib/Source');
- export type Options = import('./options').PluginOptions &
- import('eslint').ESLint.Options;
- export type FormatterFunction = (
- results: import('eslint').ESLint.LintResult[],
- data?: import('eslint').ESLint.LintResultData | undefined
- ) => string;
- export type GenerateReport = (compilation: Compilation) => Promise<void>;
- export type Report = {
- errors?: ESLintError | undefined;
- warnings?: ESLintError | undefined;
- generateReportAsset?: GenerateReport | undefined;
- };
- export type Reporter = () => Promise<Report>;
- export type Linter = (files: string | string[]) => void;
- export type LintResultMap = {
- [files: string]: import('eslint').ESLint.LintResult;
- };
- import ESLintError from './ESLintError';
|