before formatting is appplied: ``` public enum TestEnum: Int { case a = 0, b = 1, c = 2 } ``` with OneCasePerLine formatting: ``` public enum TestEnum: Int { case a = 0 case b = 1 case c = 2 } ``` The correct format should be: ``` public enum TestEnum: Int { case a = 0 case b = 1 case c = 2 } ```