Skip to content

no-obsolete-doctype 🔧

Detect legacy XHTML/HTML4 doctypes.

Severity

warning

❌ Incorrect

html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">

✅ Correct

html
<!DOCTYPE html>

Reference

Configuration

json
{
  "rules": {
    "no-obsolete-doctype": "warning"
  }
}

Released under the MIT License.