Skip to content

Commit

Permalink
case-insensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
HeikoTheissen committed Nov 7, 2024
3 parents 9a7a7e5 + a0ededd + 7b8b490 commit 316840a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/fwprettier.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ createInterface({
});
else
promise = promise
.then(() => format(unformatted, { filepath: ".js" }))
.then(() =>
format(unformatted, { filepath: ".js", trailingComma: "none" }),
)
.then(
function (formatted) {
out += formatted.replace(/\/\*|\*\//g, "");
Expand Down

0 comments on commit 316840a

Please sign in to comment.