Skip to content

no-autoplay-media

Detect autoplay without muted on video/audio.

Severity

warning

❌ Incorrect

html
<video src="v.mp4" autoplay></video>

✅ Correct

html
<video src="v.mp4" autoplay muted></video>

Reference

Configuration

json
{
  "rules": {
    "no-autoplay-media": "warning"
  }
}

Released under the MIT License.