<!-- BEFORE SUBMITTING AN ISSUE: Option requests are out of scope for CSharpier, they will be closed without discussion. --> Includes `and` `or` etc **Input:** ``` switch ("") { case "" or "": break; } ``` **Output:** ``` switch ("") { case "" or "": break; } ``` **Expected behavior:** I think if we're under the line length its good to keep on one line. Probably expected to keep the same as input in this case