- Notifications
You must be signed in to change notification settings - Fork 473
Open
Labels
formatterIssues related to code formattingIssues related to code formatting
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
formatterIssues related to code formattingIssues related to code formatting