Skip to content

0.69.0

Choose a tag to compare

@github-actions github-actions released this 15 Apr 08:37
· 3 commits to main since this release
Immutable release. Only release title and notes can be modified.

Prettier 3.8.3

Install

Dependencies:

  • Install dprint's CLI >= 0.40.0
  • Create a config file via dprint init

Then:

  1. Run dprint add prettier, which will update the config file like so:

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

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