markdownlint
markdownlint copied to clipboard
Table style consistency check
It would be nice to be able to enforce table style consistency:
| foo | bar |
|-----|-----|
| 123 | 456 |
vs
| foo | bar
|-----|----
| 123 | 456
vs
foo | bar
----|----
123 | 456
Style could be detected as being inconsistent from first occurence, or globally enforced as a setting.
Something like https://github.com/remarkjs/remark-lint/tree/master/packages/remark-lint-table-cell-padding would indeed be nice