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
#![cfg_attr(feature = "cargo-clippy", allow(clippy::inline_always,)]
could be formatted to #![cfg_attr(feature = "cargo-clippy", allow(clippy::inline_always)].
Note that this already works for just #![allow(nline_always,)]
rustfmt 1.0.0-nightly (43206f4 2018-11-30)
The text was updated successfully, but these errors were encountered:
I understand that this isn't the intended result from this issue, but we don't want to remove trailing commas if they are present in the source text. The current behavior in the #![allow(nline_always,)] case is a bug. I just checked and #5394 resolves removing the trailing comma in the #![allow(nline_always,)]
#![cfg_attr(feature = "cargo-clippy", allow(clippy::inline_always,)]
could be formatted to
#![cfg_attr(feature = "cargo-clippy", allow(clippy::inline_always)]
.Note that this already works for just
#![allow(nline_always,)]
rustfmt 1.0.0-nightly (43206f4 2018-11-30)
The text was updated successfully, but these errors were encountered: