style: normalize import ordering and wrapping

This commit is contained in:
Peter Steinberger
2026-04-05 09:22:50 +01:00
parent fb77c8ce4e
commit bff55b55cb
8 changed files with 23 additions and 15 deletions

View File

@@ -33,10 +33,10 @@ vi.mock("./program-context.js", () => ({
describe("buildProgram", () => {
function mockProcessOutput() {
vi.spyOn(process.stdout, "write").mockImplementation(
((() => true) as unknown) as typeof process.stdout.write,
(() => true) as unknown as typeof process.stdout.write,
);
vi.spyOn(process.stderr, "write").mockImplementation(
((() => true) as unknown) as typeof process.stderr.write,
(() => true) as unknown as typeof process.stderr.write,
);
}