Skip to content

Commit f2b301a

Browse files
committed
chore: fix linter warnings
1 parent 3fbd4bf commit f2b301a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ function SNAKE_CASE_toCamelCase(str: string): string {
256256
// whatever is in mongosh.
257257
function parseCliConfig(args: string[]): CliOptions {
258258
const programArgs = args.slice(2);
259-
const parsed = argv(programArgs, OPTIONS) as unknown as CliOptions &
259+
const parsed = argv(programArgs, OPTIONS as unknown as argv.Options) as unknown as CliOptions &
260260
UserConfig & {
261261
_?: string[];
262262
};

0 commit comments

Comments
 (0)