Open
Description
Hi, it would be really cool if an attribute's content could be arranged in more ways. (Similar to array_width
)
Example:
Currently, if you have this attribute:
#[diagnostic(
code(...),
url(...),
severity(...)
)]
fn x() {...}
It will get rearranged to:
#[diagnostic(code(...), url(...), severity(...))]
fn x() {...}
It would be useful if there was an option specifically for vertical formatting in attributes' content