no-duplicate-case
Disallow duplicate case labels
✅ Recommended
Using the recommended
config from @eslint/js
in a configuration file enables this rule
If a switch
statement has duplicate test expressions in case
clauses, it is likely that a programmer copied a case
clause but forgot to change the test expression.
Rule Details
This rule disallows duplicate test expressions in case
clauses of switch
statements.
Examples of incorrect code for this rule:
Open in Playground
/*eslint no-duplicate-case: "error"*/
var a = 1,
one = 1;
switch (a) {
case 1:
break;
case 2:
break;
default:
break;
}
switch (a) {
case one:
break;
case 2:
break;
default:
break;
}
switch (a) {
case "1":
break;
case "2":
break;
default:
break;
}
Examples of correct code for this rule:
Open in Playground
/*eslint no-duplicate-case: "error"*/
var a = 1,
one = 1;
switch (a) {
case 1:
break;
case 2:
break;
case 3:
break;
default:
break;
}
switch (a) {
case one:
break;
case 2:
break;
case 3:
break;
default:
break;
}
switch (a) {
case "1":
break;
case "2":
break;
case "3":
break;
default:
break;
}
When Not To Use It
In rare cases where identical test expressions in case
clauses produce different values, which necessarily means that the expressions are causing and relying on side effects, you will have to disable this rule.
switch (a) {
case i++:
foo();
break;
case i++: // eslint-disable-line no-duplicate-case
bar();
break;
}
Version
This rule was introduced in ESLint v0.17.0.