UNPKG

kist

Version:

Package Pipeline Processor

18 lines (17 loc) 578 B
import { Action } from "../../core/pipeline/Action"; import { ActionOptionsType } from "../../types/ActionOptionsType"; /** * LintAction handles linting TypeScript and JavaScript files using ESLint. * This action can be configured to run in strict mode or automatically fix issues. */ export declare class LintAction extends Action { private eslint; constructor(); execute(options: ActionOptionsType): Promise<void>; /** * Provides a description of the action. * * @returns A string description of the action. */ describe(): string; }