Skip to main content

table-row-column-alignment

v4 default severity was warning. v5 splits into four rules. Alias expands to all four until v6.

New ruleCheckDefault severity
no-table-cell-overlapOverlapping cellserror
no-table-span-overflowrowspan past the row grouperror
no-empty-table-trackRow or column with no anchored cellerror
consistent-table-row-lengthUneven column counts (spec allows growing the table)warning

v5 models the grid with HTML LS §4.9.12.1 Forming a table. New reports include empty tracks and rowspan past a row group. A rowspan that exactly fills the rows below it is no longer reported as an extra column (v4 cell-counting false positive).

If overlap is reported, the other three rules skip that table (the grid would be speculative).

markuplint:a11y enables all four as named groups. Restore v4 warning-level table-model checks by setting those three rules to "severity": "warning".