We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eacd4a5 commit d244dd1Copy full SHA for d244dd1
src/cli/runCli.ts
@@ -42,7 +42,8 @@ export const runCli = async (
42
43
const parsedArgv = {
44
config: "./.eslintrc.js",
45
- ...command.parse(rawArgv).opts(),
+ // eslint-disable-next-line -- this gets deduced as the same type, for some erroneous reason
46
+ ...(command.parse(rawArgv).opts() as Partial<TSLintToESLintSettings>),
47
} as TSLintToESLintSettings;
48
49
// 2. If the version should be printed, we do that and stop execution.
0 commit comments