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
Hello.
I do like to write Foo { bar: bar } and I don't like to write Foo { bar }. So I'm trying to turn off the "redundant_field_names" lint:
Foo { bar: bar }
Foo { bar }
#![cfg_attr(feature = "cargo-clippy", allow(redundant_field_names))]
but it has no effect, I'm still getting spammed by this lint.
Please help.
Rust version: 1.44.0-beta.752
The text was updated successfully, but these errors were encountered:
Duplicate of #5356.
Sorry, something went wrong.
Please merge this, 1.44.0-beta.4 and still this bug.
Thank you very much, works fine in 1.45.0-beta.3359
No branches or pull requests
Hello.
I do like to write
Foo { bar: bar }
and I don't like to writeFoo { bar }
.So I'm trying to turn off the "redundant_field_names" lint:
but it has no effect, I'm still getting spammed by this lint.
Please help.
Rust version: 1.44.0-beta.752
The text was updated successfully, but these errors were encountered: