Add rule MD056/table-column-count (fixes #92).

This commit is contained in:
David Anson 2024-01-04 23:07:55 -08:00
parent f694a56254
commit 30d62f19ac
26 changed files with 1748 additions and 298 deletions

View file

@ -297,5 +297,8 @@
"MD055": {
// Table pipe style
"style": "consistent"
}
},
// MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md056.md
"MD056": true
}

View file

@ -267,3 +267,6 @@ MD054:
MD055:
# Table pipe style
style: "consistent"
# MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md056.md
MD056: true

View file

@ -1674,6 +1674,16 @@
},
"additionalProperties": false
},
"MD056": {
"description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md056.md",
"type": "boolean",
"default": true
},
"table-column-count": {
"description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md056.md",
"type": "boolean",
"default": true
},
"headings": {
"description": "headings : MD001, MD003, MD018, MD019, MD020, MD021, MD022, MD023, MD024, MD025, MD026, MD036, MD041, MD043",
"type": "boolean",
@ -1790,7 +1800,7 @@
"default": true
},
"table": {
"description": "table : MD055",
"description": "table : MD055, MD056",
"type": "boolean",
"default": true
}