Skip to content

no-consecutive-br

Detect consecutive br elements.

Severity

warning

❌ Incorrect

html
<p>text<br><br>more</p>

✅ Correct

html
<p>text<br>more</p>

Reference

Configuration

json
{
  "rules": {
    "no-consecutive-br": "error"
  }
}

Released under the MIT License.