tslint-to-eslint-config
Version:
Converts your TSLint configuration to the closest reasonable ESLint equivalent.
10 lines (9 loc) • 430 B
TypeScript
import { TSLintRuleOptions } from "../converters/lintConfigs/rules/types";
import { ErrorSummary } from "./errorSummary";
export declare class ConversionError extends Error implements ErrorSummary {
private readonly summary;
private constructor();
static forMerger(eslintRule: string): ConversionError;
static forRuleError(error: Error, tslintRule: TSLintRuleOptions): ConversionError;
getSummary(): string;
}