I was a bit surprised that the last case also requires a break with `noFallthroughCasesInSwitch` in 1.8. Is that intentional? ``` ts switch (x % 2) { case 0: console.log("even"); break; case 1: // Error: Fallthrough case in switch. console.log("odd"); // no break here } ```