Skip to content

script-type

Validate script type attribute values.

Severity

error

❌ Incorrect

html
<script type="text/coffeescript"></script>

✅ Correct

html
<script type="module"></script>

Reference

Configuration

json
{
  "rules": {
    "script-type": "error"
  }
}

Released under the MIT License.