-
Notifications
You must be signed in to change notification settings - Fork 471
Open
@tx46
Description
switch 0 {
// Something something
| 0
// Another something
| 1 =>
let foo = 123
doSomethingInteresting(foo)
}
formats to:
switch 0 {
// Something something
| 0
| // Another something
1 =>
let foo = 123
doSomethingInteresting(foo)
}
which likely doesn't match the intention here. in general i dislike that the formatter is throwing my comments around and won't let me place them as i want to.
Metadata
Metadata
Assignees
Labels
No labels