From 3cd97d8f2a06e79212a580dd09b15a0242362054 Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Fri, 1 Mar 2024 13:14:07 -0500 Subject: [PATCH] cargo: add --all to the fmt-unstable alias It isn't possible to add extra arguments to an alias like this, so we might as well add `--all` to make it more useful for developers. --- .cargo/config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index b975a613..de598eaa 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,3 +1,3 @@ [alias] -fmt-unstable = ["fmt", "--", "--config-path", ".rustfmt.unstable.toml"] +fmt-unstable = ["fmt", "--all", "--", "--config-path", ".rustfmt.unstable.toml"]