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
Looks like the #[rustfmt::skip::attributes(derive)] isn't being honored when merge_derives=true is set (which is the default). You might also consider setting merge_derives=false if you need a short term fix. Check out the config docs for merge_derives
It will merge
#derive(StructField)
and#[derive(Clone)]
to#derive(StructField, Clone)]
, when i runcargo fmt
.I don't want to merge
#derive(StructField)
and#[derive(Clone)]
.The text was updated successfully, but these errors were encountered: