Skip to content

picture-structure

Validate picture element structure.

Severity

error

❌ Incorrect

html
<picture>
  <source srcset="x">
</picture>

✅ Correct

html
<picture>
  <source srcset="x">
  <img src="x" alt="x">
</picture>

Reference

Configuration

json
{
  "rules": {
    "picture-structure": "error"
  }
}

Released under the MIT License.