mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-17 22:40:13 +01:00
Update MD027/no-multiple-space-blockquote to add a list_items parameter (fixes #1473).
This commit is contained in:
parent
d02090db2c
commit
435c55f72a
14 changed files with 333 additions and 14 deletions
18
lib/configuration-strict.d.ts
vendored
18
lib/configuration-strict.d.ts
vendored
|
|
@ -470,11 +470,25 @@ export interface ConfigurationStrict {
|
|||
/**
|
||||
* MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md027.md
|
||||
*/
|
||||
MD027?: boolean;
|
||||
MD027?:
|
||||
| boolean
|
||||
| {
|
||||
/**
|
||||
* Include list items
|
||||
*/
|
||||
list_items?: boolean;
|
||||
};
|
||||
/**
|
||||
* MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md027.md
|
||||
*/
|
||||
"no-multiple-space-blockquote"?: boolean;
|
||||
"no-multiple-space-blockquote"?:
|
||||
| boolean
|
||||
| {
|
||||
/**
|
||||
* Include list items
|
||||
*/
|
||||
list_items?: boolean;
|
||||
};
|
||||
/**
|
||||
* MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md028.md
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue