Skip to content

Commit

Permalink
feat: replace deprecated jsxBracketSameLine with bracketSameLine (#2
Browse files Browse the repository at this point in the history
)

From Prettier 2.4.0 jsxBracketSameLine is deprecated. The new property name is bracketSameLine.

https://prettier.io/docs/en/options.html#deprecated-jsx-brackets
  • Loading branch information
joshmcarthur authored May 20, 2022
1 parent 877beb5 commit 290ef63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"singleQuote": true,
"bracketSpacing": true,
"jsxSingleQuote": false,
"jsxBracketSameLine": false,
"bracketSameLine": false,
"quoteProps": "consistent",
"proseWrap": "always",
"endOfLine": "lf",
Expand Down

0 comments on commit 290ef63

Please sign in to comment.