Skip to content

0.55.0

Compare
Choose a tag to compare
@github-actions github-actions released this 14 Feb 07:25
· 2 commits to main since this release

Prettier 3.5.1

Install

Dependencies:

  • Install dprint's CLI >= 0.40.0

In a dprint configuration file:

  1. Specify the plugin url and checksum in the "plugins" array or run dprint config add prettier:

    {
      // etc...
      "plugins": [
        // ...add other dprint plugins here that you want to take precedence over prettier...
        "https://plugins.dprint.dev/prettier-0.55.0.json@c1b0b718efe4457950b815a18e53dfca05b48f660089a18e2712f1142132b058"
      ]
    }
  2. Add a "prettier" configuration property if desired.

    {
      // ...etc...
      "prettier": {
        "trailingComma": "all",
        "singleQuote": true,
        "proseWrap": "always"
      }
    }