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
before rustfmt:
pub use views::*; pub use foo::bar; // re-export for frontend
after (with import reordering enabled):
pub use foo::bar; pub use views::*; // re-export for frontend
The comment is at the wrong import now. It should not just reorder the imports but also their comments with them!
The text was updated successfully, but these errors were encountered:
Looks like #3720.
Sorry, something went wrong.
I am working on this issue.
This comment may make getting started a little easier, though it may be outdated. #3720 (comment)
closing this as a duplicate of #3720
Successfully merging a pull request may close this issue.
before rustfmt:
after (with import reordering enabled):
The comment is at the wrong import now. It should not just reorder the imports but also their comments with them!
The text was updated successfully, but these errors were encountered: