You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not exactly a dup, though this has already been implemented within source (refs #3764). It's considered a breaking change and hasn't been released, but available in the rustfmt 2.0 beta if you build from source. Going to go ahead and close.
Side note, you may want to bump rust-lang/style-team#143 in the Style Guide to try to get that codified.
Current behavior is to sort imports lexicographically:
use std::num::{NonZeroU16, NonZeroU8, NonZeroU32, NonZeroU64};
Natural sorting would be slightly nicer:
use std::num::{NonZeroU8, NonZeroU16, NonZeroU32, NonZeroU64};
The text was updated successfully, but these errors were encountered: