Skip to content

Commit

Permalink
fix(prettier): set semi to true (#91)
Browse files Browse the repository at this point in the history
* fix(prettier): set semi to true

* chore: changeset
  • Loading branch information
sushichan044 authored May 11, 2024
1 parent d102202 commit e527eb0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/forty-wombats-argue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@virtual-live-lab/prettier-config": patch
---

insert semicolon by default
2 changes: 1 addition & 1 deletion packages/prettier-config/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const config: Config = {
endOfLine: "lf",
jsxSingleQuote: false,
quoteProps: "consistent",
semi: false,
semi: true,
singleQuote: false,
tabWidth: 2,
trailingComma: "all",
Expand Down

0 comments on commit e527eb0

Please sign in to comment.