diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2022-02-21 12:47:08 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-21 12:47:08 -0500 |
| commit | 877c0b724e57211c63505d932ebf6f1051a9c2f1 (patch) | |
| tree | 63df5c19369bd28d34c47827a152f371c750576d /.dprint.json | |
| parent | 5d7e1229db8034c4b90375469a6ec9579f2fd644 (diff) | |
chore: use `rustfmt` cli via dprint for faster format (#13735)
Diffstat (limited to '.dprint.json')
| -rw-r--r-- | .dprint.json | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.dprint.json b/.dprint.json index c2664e13a..15b870105 100644 --- a/.dprint.json +++ b/.dprint.json @@ -9,8 +9,12 @@ "json": { "deno": true }, + "exec": { + "associations": "**/*.rs", + "rustfmt": "rustfmt" + }, "includes": [ - "**/*.{ts,tsx,js,jsx,json,md,toml}" + "**/*.{ts,tsx,js,jsx,json,md,toml,rs}" ], "excludes": [ ".cargo_home", @@ -44,6 +48,7 @@ "https://plugins.dprint.dev/typescript-0.61.0.wasm", "https://plugins.dprint.dev/json-0.14.0.wasm", "https://plugins.dprint.dev/markdown-0.12.1.wasm", - "https://plugins.dprint.dev/toml-0.5.3.wasm" + "https://plugins.dprint.dev/toml-0.5.3.wasm", + "https://plugins.dprint.dev/exec-0.1.1.exe-plugin@42d3e30a14370b1a33dcc82c78528bd08979f2d4275014087d53472d3e229c62" ] } |
