tslint-to-eslint-config
Version:
Converts your TSLint configuration to the closest reasonable ESLint equivalent.
11 lines (10 loc) • 406 B
TypeScript
/**
* Runs a config print command and parses its output as JSON.
*
* @param command - Printer command to exec, such as "npx tslint --print-config".
* @param config - Configuration file location to read from.
*/
export declare const findReportedConfigurationStandalone: (
command: string,
config: string,
) => Promise<Error | import("../input/findReportedConfiguration").DeepPartial<unknown>>;