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
In addition (or as alternative) to https://github.com/Manishearth/rust-clippy/issues/880 I'd love to have a lint that warns on mal-sorted use statements inside a group.
So that this would trigger a warning:
use lorem::ipsum::{dolor, sit, amet}; use consectetur; use adipiscing::elit;
while this wouldn't:
use adipiscing::elit; use consectetur; use lorem::ipsum::{amet, dolor, sit};
This is would probably be a candidate for pedantic.
pedantic
The text was updated successfully, but these errors were encountered:
Again, this is very opinionated and probably more suited to rustfmt.
Sorry, something went wrong.
Fair point. And there appears to be an issue for it already: rust-lang/rustfmt#298.
No branches or pull requests
In addition (or as alternative) to https://github.com/Manishearth/rust-clippy/issues/880 I'd love to have a lint that warns on mal-sorted use statements inside a group.
So that this would trigger a warning:
while this wouldn't:
This is would probably be a candidate for
pedantic
.The text was updated successfully, but these errors were encountered: