File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff 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
2727export 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
You can’t perform that action at this time.
0 commit comments