Enable unused_qualifications
lint at the workspace level
#14782
Labels
A-Build-System
Related to build systems or continuous integration
C-Feature
A new feature, making something new possible
D-Trivial
Nice and easy! A great choice to get started with Bevy
S-Ready-For-Implementation
This issue is ready for an implementation PR. Go for it!
X-Contentious
There are nontrivial implications that should be thought through
What problem does this solve or what need does it fill?
As seen in #10749, redundant imports can be quite messy.
What solution would you like?
As pointed out to me, the
unused_qualifications
Rust lint checks for this. It's allow-by-default, so we just need to turn it on. This should be set towarn
, like the rest of our lints.What alternative(s) have you considered?
We can continue to check and clean this up manually.
Additional context
The text was updated successfully, but these errors were encountered: