You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.5 KiB
48 lines
1.5 KiB
/** @typedef {import('eslint').ESLint} ESLint */ |
|
/** @typedef {import('eslint').ESLint.LintResult} LintResult */ |
|
/** @typedef {import('./options').Options} Options */ |
|
/** @typedef {() => Promise<void>} AsyncTask */ |
|
/** @typedef {(files: string|string[]) => Promise<LintResult[]>} LintTask */ |
|
/** @typedef {JestWorker & {lintFiles: LintTask}} Worker */ |
|
/** @typedef {{threads: number, ESLint: ESLint, eslint: ESLint, lintFiles: LintTask, cleanup: AsyncTask}} Linter */ |
|
/** |
|
* @param {Options} options |
|
* @returns {Linter} |
|
*/ |
|
export function loadESLint(options: Options): Linter; |
|
/** |
|
* @param {string|undefined} key |
|
* @param {number} poolSize |
|
* @param {Options} options |
|
* @returns {Linter} |
|
*/ |
|
export function loadESLintThreaded( |
|
key: string | undefined, |
|
poolSize: number, |
|
options: Options |
|
): Linter; |
|
/** |
|
* @param {string|undefined} key |
|
* @param {Options} options |
|
* @returns {Linter} |
|
*/ |
|
export default function getESLint( |
|
key: string | undefined, |
|
{ threads, ...options }: Options |
|
): Linter; |
|
export type ESLint = import('eslint').ESLint; |
|
export type LintResult = import('eslint').ESLint.LintResult; |
|
export type Options = import('./options').Options; |
|
export type AsyncTask = () => Promise<void>; |
|
export type LintTask = (files: string | string[]) => Promise<LintResult[]>; |
|
export type Worker = JestWorker & { |
|
lintFiles: LintTask; |
|
}; |
|
export type Linter = { |
|
threads: number; |
|
ESLint: ESLint; |
|
eslint: ESLint; |
|
lintFiles: LintTask; |
|
cleanup: AsyncTask; |
|
}; |
|
import { Worker as JestWorker } from 'jest-worker';
|
|
|