tslint-to-eslint-config
Version:
Converts your TSLint configuration to the closest reasonable ESLint equivalent.
9 lines (8 loc) • 505 B
TypeScript
import { RuleConverter } from "../ruleConverter";
export declare const ConstRequiredForAllCapsMsg =
"typescript-eslint does not enforce uppercase for const only.";
export declare const IgnoreLeadingTrailingIdentifierMsg =
"Leading and trailing underscores (_) on identifiers will now be ignored.";
export declare const ForbiddenLeadingTrailingIdentifierMsg =
"Leading or trailing underscores (_) on identifiers will now be forbidden.";
export declare const convertVariableName: RuleConverter;