Skip to content

no-empty-palpable-content

Detect empty palpable content elements.

Severity

warning

❌ Incorrect

html
<p></p>

✅ Correct

html
<p>text</p>

Reference

Configuration

json
{
  "rules": {
    "no-empty-palpable-content": "error"
  }
}

Released under the MIT License.