Open
Description
Currently swift-format would squash case and return statement together like this:
switch self {
case .primary: return 0
case .secondary: return 1
}
Ideally it should be able to produce something more readable but I don't see any option to achieve that.
switch self {
case .primary:
return 0
case .secondary:
return 1
}
Metadata
Metadata
Assignees
Labels
No labels