Skip to content

Commit d9f7a6d

Browse files
style: fix linting
1 parent 05c25ba commit d9f7a6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sfCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -382,9 +382,9 @@ export abstract class SfCommand<T> extends Command {
382382
sfCommandError.exitCode === 2 &&
383383
error.message.includes('Unexpected argument')
384384
) {
385-
// @ts-expect-error error's causes aren't typed, this is what's returned from flag parsing errors
386-
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
387385
const output =
386+
// @ts-expect-error error's causes aren't typed, this is what's returned from flag parsing errors
387+
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
388388
(sfCommandError.cause?.parse?.output?.raw as Array<{ flag: string; input: string; type: 'flag' | 'arg' }>) ??
389389
[];
390390

0 commit comments

Comments
 (0)