Skip to content

0.52.2

Compare
Choose a tag to compare
@github-actions github-actions released this 06 Jan 23:45
· 3 commits to main since this release
  • fix: make linux arm64 build work

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.52.2.json@86b77d30dfb8fc82bba1fa25ac347b14b2e684d1c06731713d2c7600c6d839e7"
      ]
    }
  2. Add a "prettier" configuration property if desired.

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