Skip to content
This repository was archived by the owner on Dec 17, 2022. It is now read-only.

0.4.0

Compare
Choose a tag to compare
@github-actions github-actions released this 23 May 20:49
· 13 commits to main since this release

Install

Dependencies:

  1. Install dprint's CLI >= 0.9.0

In dprint configuration file:

  1. Specify the plugin url and checksum in the "plugins" array.

  2. Ensure the rs extension is matched in an "includes" pattern.

  3. Add a "rustfmt" configuration property if desired.

    {
      // ...etc...
      "rustfmt": {
        "brace_style": "AlwaysNextLine"
      },
      "includes": [
        "**/*.{rs}"
      ],
      "plugins": [
        "https://plugins.dprint.dev/rustfmt-0.4.0.exe-plugin@c6bb223ef6e5e87580177f6461a0ab0554ac9ea6b54f78ea7ae8bf63b14f5bc2"
      ]
    }