Skip to content

Commit d0fa92f

Browse files
committed
fix: eslint with missing trailing comma
1 parent 9cd4265 commit d0fa92f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cli/src/utils/logger.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const badge = (text: string, bgColor: ChalkFunction, textColor: ChalkFunction =
1414
const textIndent = (
1515
text: string | string[],
1616
indentFirst = true,
17-
indent: number = MAX_PREFIX_LENGTH + 2
17+
indent: number = MAX_PREFIX_LENGTH + 2,
1818
) => {
1919
const parts = Array.isArray(text) ? text : [text];
2020

0 commit comments

Comments
 (0)