Open
Description
I'm using vanilla settings.
let _ = |first, second: SomeType<With, Many, Many, Many, Many, Many, Many, Many, Many, Generic, Arguments>, third| {};
...formats to...
let _ = |first,
second: SomeType<
With,
Many,
Many,
Many,
Many,
Many,
Many,
Many,
Many,
Generic,
Arguments,
>,
third| {};
Is this expected behavior? I would have expected...
let _ = |first,
second: SomeType<
With,
Many,
Many,
Many,
Many,
Many,
Many,
Many,
Many,
Generic,
Arguments,
>,
third| {};
...or (I'm not a big fan of the 1 space indentation for closure arguments)...
let _ = |
first,
second: SomeType<
With,
Many,
Many,
Many,
Many,
Many,
Many,
Many,
Many,
Generic,
Arguments,
>,
third
| {};