Skip to content

Commit b213b69

Browse files
committed
prettier
1 parent 4226416 commit b213b69

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

src/cac.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ import * as fish from './fish';
44
import * as powershell from './powershell';
55
import type { CAC } from 'cac';
66
import { Completion } from './index';
7-
import { CompletionConfig, noopHandler, requireDashDashSeparator } from './shared';
7+
import {
8+
CompletionConfig,
9+
noopHandler,
10+
requireDashDashSeparator,
11+
} from './shared';
812

913
const execPath = process.execPath;
1014
const processArgs = process.argv.slice(1);

src/citty.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ import type {
1111
SubCommandsDef,
1212
} from 'citty';
1313
import { generateFigSpec } from './fig';
14-
import { CompletionConfig, noopHandler, requireDashDashSeparator } from './shared';
14+
import {
15+
CompletionConfig,
16+
noopHandler,
17+
requireDashDashSeparator,
18+
} from './shared';
1519

1620
function quoteIfNeeded(path: string) {
1721
return path.includes(' ') ? `'${path}'` : path;

0 commit comments

Comments
 (0)