Skip to content

Commit 9738e95

Browse files
betegonclaude
andcommitted
fix(formatters): apply biome formatting to text-table
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent f1755d2 commit 9738e95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/formatters/text-table.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -626,8 +626,8 @@ export class StreamingTable {
626626
const totalFitted = this.columnWidths.reduce((s, w) => s + w, 0);
627627
const lastIdx = this.columnWidths.length - 1;
628628
if (totalFitted < maxContentWidth && lastIdx >= 0) {
629-
this.columnWidths[lastIdx] = (this.columnWidths[lastIdx] ?? 0) +
630-
(maxContentWidth - totalFitted);
629+
this.columnWidths[lastIdx] =
630+
(this.columnWidths[lastIdx] ?? 0) + (maxContentWidth - totalFitted);
631631
}
632632
}
633633

0 commit comments

Comments
 (0)