mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-21 16:30:12 +01:00
This commit is contained in:
parent
460836445c
commit
10f095c4fd
32 changed files with 3149 additions and 333 deletions
|
|
@ -521,19 +521,20 @@ for (const rule of rules) {
|
|||
break;
|
||||
case "MD054":
|
||||
scheme.properties = {
|
||||
"style": {
|
||||
"description": "Link or image style should be consistent",
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"mixed",
|
||||
"autolink_only",
|
||||
"inline_only",
|
||||
"reference_only",
|
||||
"inline_or_reference",
|
||||
"inline_or_autolink",
|
||||
"reference_or_autolink"
|
||||
],
|
||||
"default": "mixed"
|
||||
"autolink": {
|
||||
"description": "Allow autolinks",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"inline": {
|
||||
"description": "Allow inline links and images",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"reference": {
|
||||
"description": "Allow reference links and images",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
}
|
||||
};
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue