Skip to content

table-has-caption

Require caption on data tables.

Severity

warning

❌ Incorrect

html
<table>
  <tr><th>Name</th></tr>
</table>

✅ Correct

html
<table>
  <caption>Users</caption>
  <tr><th>Name</th></tr>
</table>

Reference

Configuration

json
{
  "rules": {
    "table-has-caption": "warning"
  }
}

Released under the MIT License.