mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 14:00:13 +01:00
Add rule MD056/table-column-count (fixes #92).
This commit is contained in:
parent
f694a56254
commit
30d62f19ac
26 changed files with 1748 additions and 298 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue