We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"cargo fmt" command does not remove white spaces in derive block. For example i expected this
#[derive(serde :: Serialize)] enum Something { Variant }
to become this
#[derive(serde::Serialize)] enum Something { Variant }
cannot find anything similar in https://rust-lang.github.io/rustfmt/?version=master&search= tried to find by words "space" or "derive" (default config)
The text was updated successfully, but these errors were encountered:
@kuqmua thanks for the report. What version of rustfmt were you using? You can find this out by running rustfmt --version.
rustfmt --version
Sorry, something went wrong.
@ytmimi
rustfmt 1.8.0-nightly (6c6d210089 2024-09-22)
No branches or pull requests
"cargo fmt" command does not remove white spaces in derive block. For example i expected this
to become this
cannot find anything similar in https://rust-lang.github.io/rustfmt/?version=master&search=
tried to find by words "space" or "derive"
(default config)
The text was updated successfully, but these errors were encountered: