europa-build
Version:
Tool for generating and maintaining Europa plugins and presets
17 lines (16 loc) • 652 B
TypeScript
import { ESLintScriptProvider, ESLintScriptProviderOptions } from "./ESLintScriptProvider";
/**
* A {@link ScriptProvider} implementation that runs ESLint against a package's source code using a common configuration
* that supports Prettier and TypeScript.
*/
export declare class LintScriptProvider extends ESLintScriptProvider {
/**
* Creates an instance of {@link LintScriptProvider} using the `options` provided.
*
* @param options - The options to be used.
*/
constructor(options: ESLintScriptProviderOptions);
protected getESLintArgs(): string[];
protected getLoggerName(): string;
getName(): string;
}