Skip to content

src-not-empty

Detect empty src or href attributes.

Severity

error

❌ Incorrect

html
<img src="" alt="x">

✅ Correct

html
<img src="photo.jpg" alt="x">

Reference

Configuration

json
{
  "rules": {
    "src-not-empty": "error"
  }
}

Released under the MIT License.