chore: deno fmt everything

This commit is contained in:
Shibo Lyu 2024-04-29 14:40:45 +08:00
parent 910b6519ae
commit 2836153a7f
4 changed files with 16 additions and 14 deletions

View file

@ -23,7 +23,7 @@ Deno.test("section", async (t) => {
defaultColor: "F",
defaultBgColor: "0",
defaultWidth: 1,
}
},
);
});
});
@ -40,7 +40,7 @@ Deno.test("section", async (t) => {
defaultColor: "F",
defaultBgColor: "0",
defaultWidth: 1,
}
},
);
assertEquals(section.offsetX, 4);
@ -59,7 +59,7 @@ Deno.test("section", async (t) => {
defaultColor: "F",
defaultBgColor: "0",
defaultWidth: 1,
}
},
);
assertEquals(section.offsetX, 0);
@ -69,7 +69,7 @@ Deno.test("section", async (t) => {
content: T[][],
rowCount: number,
columnCount: number,
value: T
value: T,
) {
assertEquals(content.length, rowCount);
for (const row of content) {