Skip to content

Commit 5ec5ccc

Browse files
committed
prettier
1 parent d76f4e1 commit 5ec5ccc

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/t.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export type OptionHandler = (
2121
) => void;
2222

2323
// Default no-op handler for options (exported for integrations)
24-
export const noopHandler: OptionHandler = function () { };
24+
export const noopHandler: OptionHandler = function () {};
2525

2626
// Completion result types
2727
export type Completion = {
@@ -305,9 +305,9 @@ export class RootCommand extends Command {
305305

306306
this.completions = toComplete.includes('=')
307307
? suggestions.map((s) => ({
308-
value: `${optionName}=${s.value}`,
309-
description: s.description,
310-
}))
308+
value: `${optionName}=${s.value}`,
309+
description: s.description,
310+
}))
311311
: suggestions;
312312
}
313313
return;
@@ -518,9 +518,9 @@ export class RootCommand extends Command {
518518
setup(name: string, executable: string, shell: string) {
519519
assert(
520520
shell === 'zsh' ||
521-
shell === 'bash' ||
522-
shell === 'fish' ||
523-
shell === 'powershell',
521+
shell === 'bash' ||
522+
shell === 'fish' ||
523+
shell === 'powershell',
524524
'Unsupported shell'
525525
);
526526

0 commit comments

Comments
 (0)