I wish rustfmt had an option to format else:s on an own line:

So instead of:

} else {

I want

}
else {

as I'm not a caveman. Couldn't find any option in the rustfmt docs, but perhaps the option is weirdly named or something.

#rust #rustfmt

@chakie

I am in your team, I much prefer the

}
else {

syntax.

in tcl, I go as far as

}\
else{

to keep this syntax

@tseitr Ooh, TCL. Not heard that name for many years.