Uh oh!
There was an error while loading. Please reload this page.
style: Remove wildcard imports - #4553
Conversation
This is based on review feedback from rust-lang#4551. I experimented with a `clippy.toml` file for "blessing" some of these, like `errors`, but for some reason I wasn't able to get it to work.
Head branch was pushed to by a user without write access
rami3l
left a comment
There was a problem hiding this comment.
LGTM modulo one question: does this change include common exceptions such as super::* in inline tests, or foo::prelude::*? I think we still want those to be excluded.
epage
commented
Oct 21, 2025
By default there are exceptions, from https://rust-lang.github.io/rust-clippy/master/index.html#wildcard_imports
|
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
djc
commented
Oct 21, 2025
I guess this needs a rebase? Lot of issues in the merge queue CI. |
epage
commented
Oct 21, 2025
Rebased |
Uh oh!
There was an error while loading. Please reload this page.
This is based on review feedback from #4551.
I experimented with a
clippy.tomlfile for "blessing" some of these, likeerrors, but for some reason I wasn't able to get it to work.