import { Event } from '@boost/event'; import { Driver, ConfigContext, ConfigArgs, Execution, Path } from '@beemo/core'; import { ESLintConfig } from './types'; export default class ESLintDriver extends Driver { onCreateIgnoreFile: Event<[ConfigContext, Path, { ignore: string[]; }], string>; bootstrap(): void; /** * ESLint writes warnings to stdout, so we need to display * both stdout and stderr on failure. */ processFailure(error: Execution): void; /** * If an "ignore" property exists in the ESLint config, create an ".eslintignore" file. */ private handleCreateIgnoreFile; } //# sourceMappingURL=ESLintDriver.d.ts.map