Add rule MD060/table-column-style (fixes #90, fixes #323).

This commit is contained in:
David Anson 2025-08-19 21:42:08 -07:00
parent b29a0e004c
commit 3532e3110a
36 changed files with 11751 additions and 175 deletions

View file

@ -1186,6 +1186,28 @@ export interface ConfigurationStrict {
*/
prohibited_texts?: string[];
};
/**
* MD060/table-column-style : Table column style : https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md060.md
*/
MD060?:
| boolean
| {
/**
* Table column style
*/
style?: "any" | "aligned" | "compact" | "tight";
};
/**
* MD060/table-column-style : Table column style : https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md060.md
*/
"table-column-style"?:
| boolean
| {
/**
* Table column style
*/
style?: "any" | "aligned" | "compact" | "tight";
};
/**
* headings : MD001, MD003, MD018, MD019, MD020, MD021, MD022, MD023, MD024, MD025, MD026, MD036, MD041, MD043
*/
@ -1279,7 +1301,7 @@ export interface ConfigurationStrict {
*/
images?: boolean;
/**
* table : MD055, MD056, MD058
* table : MD055, MD056, MD058, MD060
*/
table?: boolean;
}