Skip to content

0.35.0

Compare
Choose a tag to compare
@github-actions github-actions released this 19 Jan 07:23
· 23 commits to main since this release

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.35.0.json@0df49c4d878bb1051af2fa1d1f69ba6400f4b78633f49baa1f38954a6fd32b40"
      ]
    }
  2. Add a "prettier" configuration property if desired.

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