switch pattern `case` statements are indented. expect to be aligned with `switch` declaration. ``` * 1. Aligning each `case` with `switch` ``` ... ``` switch (inspect_me) { case 0: result = "zero"; ```