UNPKG

tslint-to-eslint-config

Version:

Converts your TSLint configuration to the closest reasonable ESLint equivalent.

8 lines (7 loc) 395 B
/** * 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>>;