123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /** @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';
|