Closed
Description
Clippy already wans when importing all the variants of an enum. But this is still allowed:
use crate::*;
This kind of global import makes the code more difficult to read since we don't know where symbols come from. It may also confuse IDEs. Could we add a lint to prevent this?
Link to the relevant reddit discussion