Skip to content

Commit 3e28a94

Browse files
natemoo-regithub-actions[bot]
authored andcommitted
[ci] format
1 parent e0c4a84 commit 3e28a94

File tree

4 files changed

+3345
-3075
lines changed

4 files changed

+3345
-3075
lines changed

packages/core/test/mock-writable.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ export class MockWritable extends Writable {
44
public buffer: string[] = [];
55

66
// biome-ignore lint/suspicious/noExplicitAny: any is the official type
7-
_write(chunk: any, encoding: BufferEncoding, callback: (error?: Error | null | undefined) => void): void {
7+
_write(
8+
chunk: any,
9+
encoding: BufferEncoding,
10+
callback: (error?: Error | null | undefined) => void
11+
): void {
812
this.buffer.push(chunk.toString());
913
callback();
1014
}

packages/core/test/utils.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ describe('utils', () => {
6565
block({ input, output });
6666
// @ts-ignore
6767
const spy = vi.spyOn(process, 'exit').mockImplementation(() => {
68-
return
68+
return;
6969
});
7070

7171
const event: Key = {

packages/prompts/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
SelectKeyPrompt,
99
SelectPrompt,
1010
State,
11-
TextPrompt,
11+
TextPrompt
1212
} from '@clack/core';
1313
import isUnicodeSupported from 'is-unicode-supported';
1414
import color from 'picocolors';

0 commit comments

Comments
 (0)