0.23.0
Install
In dprint configuration file:
-
Specify the plugin url and checksum in the
"plugins"
array:{ // etc... "plugins": [ // ...add other dprint plugins here that you want to take precedence over prettier... "https://plugins.dprint.dev/prettier-0.23.0.json@b5733385b8a5d7ef0121d5031d21d3e0d60e2405a13ffa93278a404e10209a4f" ] }
-
Ensure the file extensions supported by prettier are matched in an
"includes"
pattern. -
Add a
"prettier"
configuration property if desired.{ // ...etc... "prettier": { "trailingComma": "all", "singleQuote": true, "proseWrap": "always" } }