Skip to content

Commit 9bddaef

Browse files
style: fix formatting
1 parent 04650eb commit 9bddaef

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lib/printer.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,11 @@ function genericPrintNoParens(path: any, options: any, print: any) {
676676
argLines = path.call(print, "argument");
677677
n.argument.extra.parenthesized = true;
678678
}
679-
parts.push(" ", concat(["(\n", argLines]).indentTail(options.tabWidth), "\n)");
679+
parts.push(
680+
" ",
681+
concat(["(\n", argLines]).indentTail(options.tabWidth),
682+
"\n)",
683+
);
680684
} else {
681685
parts.push(" ", argLines);
682686
}

0 commit comments

Comments
 (0)