textlint rule that check table align.
By default, no alignment at table.
[OK]
| foo | bar |
| --- | --- |
| 111 | 222 |
[NG]
| foo | bar |
| :-- | --: |
| 111 | 222 |
npm install textlint-rule-table-align
{
"rules": {
"table-align": true
}
}
{
// Prefer alignment. (default is no alignment)
// You can configure `'left'`, `'right'`, `'center'` or `null`.
"align": null,
}