rustfmt
rustfmt copied to clipboard
Multi-line Fn supertraits are indented improperly
Multi-line supertraits appear to be insufficiently indented:
trait Foo:
Fn(
ReallyLongTypeName,
ReallyLongTypeName,
ReallyLongTypeName,
ReallyLongTypeName,
) -> ReallyLongTypeName
{
}
I'd prefer the later lines to be indented an extra level:
trait Foo:
Fn(
ReallyLongTypeName,
ReallyLongTypeName,
ReallyLongTypeName,
ReallyLongTypeName,
) -> ReallyLongTypeName
{
}
Thank you!
@swooster thanks for the report! You're right the indentation seems off here
Hi! Can i give it a try ?