Currently swift-format would squash case and return statement together like this: ```swift 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. ```swift switch self { case .primary: return 0 case .secondary: return 1 } ```