mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-22 17: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
10
lib/configuration.d.ts
vendored
10
lib/configuration.d.ts
vendored
|
|
@ -1070,6 +1070,14 @@ export interface Configuration {
|
|||
*/
|
||||
style?: "consistent" | "leading_only" | "trailing_only" | "leading_and_trailing" | "no_leading_or_trailing";
|
||||
};
|
||||
/**
|
||||
* MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md056.md
|
||||
*/
|
||||
MD056?: boolean;
|
||||
/**
|
||||
* MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md056.md
|
||||
*/
|
||||
"table-column-count"?: boolean;
|
||||
/**
|
||||
* headings : MD001, MD003, MD018, MD019, MD020, MD021, MD022, MD023, MD024, MD025, MD026, MD036, MD041, MD043
|
||||
*/
|
||||
|
|
@ -1163,7 +1171,7 @@ export interface Configuration {
|
|||
*/
|
||||
images?: boolean;
|
||||
/**
|
||||
* table : MD055
|
||||
* table : MD055, MD056
|
||||
*/
|
||||
table?: boolean;
|
||||
[k: string]: unknown;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue