- Disallow labeled statements
This rule aims to eliminate the use of labeled statements in JavaScript. It will warn whenever a labeled statement is encountered and whenever break or continue are used with a label.
Ignores labels which are sticking to loop statements.
Ignores labels which are sticking to switch statements.
You can check them out here.