Skip to content

0.70.0

Choose a tag to compare

@github-actions github-actions released this 13 May 09:50
· 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.70.0.json@c91d4f147eded09b51e1b2d5f8a03940a60278b9b4dc13b23e35b6173742ec08"
      ]
    }
  2. Add a "prettier" configuration property if desired.

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