ESLint plugin
This project is maintained by iliubinskii
ESLint plugin / no-unnecessary-break
Disallows unnecessary “break”.
module.exports = {
plugins: ["misc"],
rules: {
"misc/no-unnecessary-break": "error"
}
};
switch (x) {
case 1:
break;
case 2:
break;
}
switch (x) {
case 1:
break;
case 2:
}