Open

Description
TypeScript Version: 2.6.0-dev.20171011
Code
function countDown(n: number): void {
switch (n) {
// @ts-ignore
case 1:
console.log("1");
// intentional fall through
case 0:
console.log("0");
}
}
Expected behavior:
Ability to make ts-ignore
apply to the --noFallthroughCasesInSwitch
error but not to other errors.
Actual behavior:
case "1":
would also compile.