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.
This commit is contained in:
Daniel McCarney 2024-03-01 13:14:07 -05:00 committed by Joe Birr-Pixton
parent 1e656ba1fc
commit 3cd97d8f2a
1 changed files with 1 additions and 1 deletions

View File

@ -1,3 +1,3 @@
[alias]
fmt-unstable = ["fmt", "--", "--config-path", ".rustfmt.unstable.toml"]
fmt-unstable = ["fmt", "--all", "--", "--config-path", ".rustfmt.unstable.toml"]