no-redundant-label Disallow labels on transfers to the target selected without a label A labeled break or continue is redundant when the unlabeled statement selects the same control target. Instead, you SHOULD omit the label and reserve labeled transfers for nonlocal control flow. - Category: style - Level: warning - Fix: automatic - Scope: module Reported outer: loop { break outer; } Accepted outer: loop { break; } Prior art - ESLint ยท no-extra-label language/linter/src/rules/style/noredundantlabel.rs:8