mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-18 06:50:12 +01:00
Add rule information links to JSON schema for configuration files and corresponding examples (link is clickable in VS Code tooltips).
This commit is contained in:
parent
1a376f60bb
commit
18497ff03c
4 changed files with 177 additions and 176 deletions
|
|
@ -7,34 +7,34 @@
|
||||||
// Path to configuration file to extend
|
// Path to configuration file to extend
|
||||||
"extends": null,
|
"extends": null,
|
||||||
|
|
||||||
// MD001/heading-increment/header-increment - Heading levels should only increment by one level at a time
|
// MD001/heading-increment/header-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md001.md
|
||||||
"MD001": true,
|
"MD001": true,
|
||||||
|
|
||||||
// MD002/first-heading-h1/first-header-h1 - First heading should be a top-level heading
|
// MD002/first-heading-h1/first-header-h1 : First heading should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md002.md
|
||||||
"MD002": {
|
"MD002": {
|
||||||
// Heading level
|
// Heading level
|
||||||
"level": 1
|
"level": 1
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD003/heading-style/header-style - Heading style
|
// MD003/heading-style/header-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md003.md
|
||||||
"MD003": {
|
"MD003": {
|
||||||
// Heading style
|
// Heading style
|
||||||
"style": "consistent"
|
"style": "consistent"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD004/ul-style - Unordered list style
|
// MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md004.md
|
||||||
"MD004": {
|
"MD004": {
|
||||||
// List style
|
// List style
|
||||||
"style": "consistent"
|
"style": "consistent"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD005/list-indent - Inconsistent indentation for list items at the same level
|
// MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md005.md
|
||||||
"MD005": true,
|
"MD005": true,
|
||||||
|
|
||||||
// MD006/ul-start-left - Consider starting bulleted lists at the beginning of the line
|
// MD006/ul-start-left : Consider starting bulleted lists at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md006.md
|
||||||
"MD006": true,
|
"MD006": true,
|
||||||
|
|
||||||
// MD007/ul-indent - Unordered list indentation
|
// MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md007.md
|
||||||
"MD007": {
|
"MD007": {
|
||||||
// Spaces for indent
|
// Spaces for indent
|
||||||
"indent": 2,
|
"indent": 2,
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"start_indent": 2
|
"start_indent": 2
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD009/no-trailing-spaces - Trailing spaces
|
// MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md009.md
|
||||||
"MD009": {
|
"MD009": {
|
||||||
// Spaces for line break
|
// Spaces for line break
|
||||||
"br_spaces": 2,
|
"br_spaces": 2,
|
||||||
|
|
@ -54,7 +54,7 @@
|
||||||
"strict": false
|
"strict": false
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD010/no-hard-tabs - Hard tabs
|
// MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md010.md
|
||||||
"MD010": {
|
"MD010": {
|
||||||
// Include code blocks
|
// Include code blocks
|
||||||
"code_blocks": true,
|
"code_blocks": true,
|
||||||
|
|
@ -64,16 +64,16 @@
|
||||||
"spaces_per_tab": 1
|
"spaces_per_tab": 1
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD011/no-reversed-links - Reversed link syntax
|
// MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md011.md
|
||||||
"MD011": true,
|
"MD011": true,
|
||||||
|
|
||||||
// MD012/no-multiple-blanks - Multiple consecutive blank lines
|
// MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md012.md
|
||||||
"MD012": {
|
"MD012": {
|
||||||
// Consecutive blank lines
|
// Consecutive blank lines
|
||||||
"maximum": 1
|
"maximum": 1
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD013/line-length - Line length
|
// MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md013.md
|
||||||
"MD013": {
|
"MD013": {
|
||||||
// Number of characters
|
// Number of characters
|
||||||
"line_length": 80,
|
"line_length": 80,
|
||||||
|
|
@ -95,22 +95,22 @@
|
||||||
"stern": false
|
"stern": false
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD014/commands-show-output - Dollar signs used before commands without showing output
|
// MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md014.md
|
||||||
"MD014": true,
|
"MD014": true,
|
||||||
|
|
||||||
// MD018/no-missing-space-atx - No space after hash on atx style heading
|
// MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md018.md
|
||||||
"MD018": true,
|
"MD018": true,
|
||||||
|
|
||||||
// MD019/no-multiple-space-atx - Multiple spaces after hash on atx style heading
|
// MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md019.md
|
||||||
"MD019": true,
|
"MD019": true,
|
||||||
|
|
||||||
// MD020/no-missing-space-closed-atx - No space inside hashes on closed atx style heading
|
// MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md020.md
|
||||||
"MD020": true,
|
"MD020": true,
|
||||||
|
|
||||||
// MD021/no-multiple-space-closed-atx - Multiple spaces inside hashes on closed atx style heading
|
// MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md021.md
|
||||||
"MD021": true,
|
"MD021": true,
|
||||||
|
|
||||||
// MD022/blanks-around-headings/blanks-around-headers - Headings should be surrounded by blank lines
|
// MD022/blanks-around-headings/blanks-around-headers : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md022.md
|
||||||
"MD022": {
|
"MD022": {
|
||||||
// Blank lines above heading
|
// Blank lines above heading
|
||||||
"lines_above": 1,
|
"lines_above": 1,
|
||||||
|
|
@ -118,10 +118,10 @@
|
||||||
"lines_below": 1
|
"lines_below": 1
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD023/heading-start-left/header-start-left - Headings must start at the beginning of the line
|
// MD023/heading-start-left/header-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md023.md
|
||||||
"MD023": true,
|
"MD023": true,
|
||||||
|
|
||||||
// MD024/no-duplicate-heading/no-duplicate-header - Multiple headings with the same content
|
// MD024/no-duplicate-heading/no-duplicate-header : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md024.md
|
||||||
"MD024": {
|
"MD024": {
|
||||||
// Only check sibling headings
|
// Only check sibling headings
|
||||||
"allow_different_nesting": false,
|
"allow_different_nesting": false,
|
||||||
|
|
@ -129,7 +129,7 @@
|
||||||
"siblings_only": false
|
"siblings_only": false
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD025/single-title/single-h1 - Multiple top-level headings in the same document
|
// MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md025.md
|
||||||
"MD025": {
|
"MD025": {
|
||||||
// Heading level
|
// Heading level
|
||||||
"level": 1,
|
"level": 1,
|
||||||
|
|
@ -137,25 +137,25 @@
|
||||||
"front_matter_title": "^\\s*title\\s*[:=]"
|
"front_matter_title": "^\\s*title\\s*[:=]"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD026/no-trailing-punctuation - Trailing punctuation in heading
|
// MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md026.md
|
||||||
"MD026": {
|
"MD026": {
|
||||||
// Punctuation characters
|
// Punctuation characters
|
||||||
"punctuation": ".,;:!。,;:!"
|
"punctuation": ".,;:!。,;:!"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD027/no-multiple-space-blockquote - Multiple spaces after blockquote symbol
|
// MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md027.md
|
||||||
"MD027": true,
|
"MD027": true,
|
||||||
|
|
||||||
// MD028/no-blanks-blockquote - Blank line inside blockquote
|
// MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md028.md
|
||||||
"MD028": true,
|
"MD028": true,
|
||||||
|
|
||||||
// MD029/ol-prefix - Ordered list item prefix
|
// MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md029.md
|
||||||
"MD029": {
|
"MD029": {
|
||||||
// List style
|
// List style
|
||||||
"style": "one_or_ordered"
|
"style": "one_or_ordered"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD030/list-marker-space - Spaces after list markers
|
// MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md030.md
|
||||||
"MD030": {
|
"MD030": {
|
||||||
// Spaces for single-line unordered list items
|
// Spaces for single-line unordered list items
|
||||||
"ul_single": 1,
|
"ul_single": 1,
|
||||||
|
|
@ -167,46 +167,46 @@
|
||||||
"ol_multi": 1
|
"ol_multi": 1
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD031/blanks-around-fences - Fenced code blocks should be surrounded by blank lines
|
// MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md031.md
|
||||||
"MD031": {
|
"MD031": {
|
||||||
// Include list items
|
// Include list items
|
||||||
"list_items": true
|
"list_items": true
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD032/blanks-around-lists - Lists should be surrounded by blank lines
|
// MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md032.md
|
||||||
"MD032": true,
|
"MD032": true,
|
||||||
|
|
||||||
// MD033/no-inline-html - Inline HTML
|
// MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md033.md
|
||||||
"MD033": {
|
"MD033": {
|
||||||
// Allowed elements
|
// Allowed elements
|
||||||
"allowed_elements": []
|
"allowed_elements": []
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD034/no-bare-urls - Bare URL used
|
// MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md034.md
|
||||||
"MD034": true,
|
"MD034": true,
|
||||||
|
|
||||||
// MD035/hr-style - Horizontal rule style
|
// MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md035.md
|
||||||
"MD035": {
|
"MD035": {
|
||||||
// Horizontal rule style
|
// Horizontal rule style
|
||||||
"style": "consistent"
|
"style": "consistent"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD036/no-emphasis-as-heading/no-emphasis-as-header - Emphasis used instead of a heading
|
// MD036/no-emphasis-as-heading/no-emphasis-as-header : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md036.md
|
||||||
"MD036": {
|
"MD036": {
|
||||||
// Punctuation characters
|
// Punctuation characters
|
||||||
"punctuation": ".,;:!?。,;:!?"
|
"punctuation": ".,;:!?。,;:!?"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD037/no-space-in-emphasis - Spaces inside emphasis markers
|
// MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md037.md
|
||||||
"MD037": true,
|
"MD037": true,
|
||||||
|
|
||||||
// MD038/no-space-in-code - Spaces inside code span elements
|
// MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md038.md
|
||||||
"MD038": true,
|
"MD038": true,
|
||||||
|
|
||||||
// MD039/no-space-in-links - Spaces inside link text
|
// MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md039.md
|
||||||
"MD039": true,
|
"MD039": true,
|
||||||
|
|
||||||
// MD040/fenced-code-language - Fenced code blocks should have a language specified
|
// MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md040.md
|
||||||
"MD040": {
|
"MD040": {
|
||||||
// List of languages
|
// List of languages
|
||||||
"allowed_languages": [],
|
"allowed_languages": [],
|
||||||
|
|
@ -214,7 +214,7 @@
|
||||||
"language_only": false
|
"language_only": false
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD041/first-line-heading/first-line-h1 - First line in a file should be a top-level heading
|
// MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md041.md
|
||||||
"MD041": {
|
"MD041": {
|
||||||
// Heading level
|
// Heading level
|
||||||
"level": 1,
|
"level": 1,
|
||||||
|
|
@ -222,10 +222,10 @@
|
||||||
"front_matter_title": "^\\s*title\\s*[:=]"
|
"front_matter_title": "^\\s*title\\s*[:=]"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD042/no-empty-links - No empty links
|
// MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md042.md
|
||||||
"MD042": true,
|
"MD042": true,
|
||||||
|
|
||||||
// MD043/required-headings/required-headers - Required heading structure
|
// MD043/required-headings/required-headers : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md043.md
|
||||||
"MD043": {
|
"MD043": {
|
||||||
// List of headings
|
// List of headings
|
||||||
"headings": [],
|
"headings": [],
|
||||||
|
|
@ -235,7 +235,7 @@
|
||||||
"match_case": false
|
"match_case": false
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD044/proper-names - Proper names should have the correct capitalization
|
// MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md044.md
|
||||||
"MD044": {
|
"MD044": {
|
||||||
// List of proper names
|
// List of proper names
|
||||||
"names": [],
|
"names": [],
|
||||||
|
|
@ -245,46 +245,46 @@
|
||||||
"html_elements": true
|
"html_elements": true
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD045/no-alt-text - Images should have alternate text (alt text)
|
// MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md045.md
|
||||||
"MD045": true,
|
"MD045": true,
|
||||||
|
|
||||||
// MD046/code-block-style - Code block style
|
// MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md046.md
|
||||||
"MD046": {
|
"MD046": {
|
||||||
// Block style
|
// Block style
|
||||||
"style": "consistent"
|
"style": "consistent"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD047/single-trailing-newline - Files should end with a single newline character
|
// MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md047.md
|
||||||
"MD047": true,
|
"MD047": true,
|
||||||
|
|
||||||
// MD048/code-fence-style - Code fence style
|
// MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md048.md
|
||||||
"MD048": {
|
"MD048": {
|
||||||
// Code fence style
|
// Code fence style
|
||||||
"style": "consistent"
|
"style": "consistent"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD049/emphasis-style - Emphasis style
|
// MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md049.md
|
||||||
"MD049": {
|
"MD049": {
|
||||||
// Emphasis style
|
// Emphasis style
|
||||||
"style": "consistent"
|
"style": "consistent"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD050/strong-style - Strong style
|
// MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md050.md
|
||||||
"MD050": {
|
"MD050": {
|
||||||
// Strong style
|
// Strong style
|
||||||
"style": "consistent"
|
"style": "consistent"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD051/link-fragments - Link fragments should be valid
|
// MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md051.md
|
||||||
"MD051": true,
|
"MD051": true,
|
||||||
|
|
||||||
// MD052/reference-links-images - Reference links and images should use a label that is defined
|
// MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md052.md
|
||||||
"MD052": {
|
"MD052": {
|
||||||
// Include shortcut syntax
|
// Include shortcut syntax
|
||||||
"shortcut_syntax": false
|
"shortcut_syntax": false
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD053/link-image-reference-definitions - Link and image reference definitions should be needed
|
// MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md053.md
|
||||||
"MD053": {
|
"MD053": {
|
||||||
// Ignored definitions
|
// Ignored definitions
|
||||||
"ignored_definitions": [
|
"ignored_definitions": [
|
||||||
|
|
@ -292,7 +292,7 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD054/link-image-style - Link and image style
|
// MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md054.md
|
||||||
"MD054": {
|
"MD054": {
|
||||||
// Allow autolinks
|
// Allow autolinks
|
||||||
"autolink": true,
|
"autolink": true,
|
||||||
|
|
|
||||||
|
|
@ -6,31 +6,31 @@ default: true
|
||||||
# Path to configuration file to extend
|
# Path to configuration file to extend
|
||||||
extends: null
|
extends: null
|
||||||
|
|
||||||
# MD001/heading-increment/header-increment - Heading levels should only increment by one level at a time
|
# MD001/heading-increment/header-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md001.md
|
||||||
MD001: true
|
MD001: true
|
||||||
|
|
||||||
# MD002/first-heading-h1/first-header-h1 - First heading should be a top-level heading
|
# MD002/first-heading-h1/first-header-h1 : First heading should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md002.md
|
||||||
MD002:
|
MD002:
|
||||||
# Heading level
|
# Heading level
|
||||||
level: 1
|
level: 1
|
||||||
|
|
||||||
# MD003/heading-style/header-style - Heading style
|
# MD003/heading-style/header-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md003.md
|
||||||
MD003:
|
MD003:
|
||||||
# Heading style
|
# Heading style
|
||||||
style: "consistent"
|
style: "consistent"
|
||||||
|
|
||||||
# MD004/ul-style - Unordered list style
|
# MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md004.md
|
||||||
MD004:
|
MD004:
|
||||||
# List style
|
# List style
|
||||||
style: "consistent"
|
style: "consistent"
|
||||||
|
|
||||||
# MD005/list-indent - Inconsistent indentation for list items at the same level
|
# MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md005.md
|
||||||
MD005: true
|
MD005: true
|
||||||
|
|
||||||
# MD006/ul-start-left - Consider starting bulleted lists at the beginning of the line
|
# MD006/ul-start-left : Consider starting bulleted lists at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md006.md
|
||||||
MD006: true
|
MD006: true
|
||||||
|
|
||||||
# MD007/ul-indent - Unordered list indentation
|
# MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md007.md
|
||||||
MD007:
|
MD007:
|
||||||
# Spaces for indent
|
# Spaces for indent
|
||||||
indent: 2
|
indent: 2
|
||||||
|
|
@ -39,7 +39,7 @@ MD007:
|
||||||
# Spaces for first level indent (when start_indented is set)
|
# Spaces for first level indent (when start_indented is set)
|
||||||
start_indent: 2
|
start_indent: 2
|
||||||
|
|
||||||
# MD009/no-trailing-spaces - Trailing spaces
|
# MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md009.md
|
||||||
MD009:
|
MD009:
|
||||||
# Spaces for line break
|
# Spaces for line break
|
||||||
br_spaces: 2
|
br_spaces: 2
|
||||||
|
|
@ -48,7 +48,7 @@ MD009:
|
||||||
# Include unnecessary breaks
|
# Include unnecessary breaks
|
||||||
strict: false
|
strict: false
|
||||||
|
|
||||||
# MD010/no-hard-tabs - Hard tabs
|
# MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md010.md
|
||||||
MD010:
|
MD010:
|
||||||
# Include code blocks
|
# Include code blocks
|
||||||
code_blocks: true
|
code_blocks: true
|
||||||
|
|
@ -57,15 +57,15 @@ MD010:
|
||||||
# Number of spaces for each hard tab
|
# Number of spaces for each hard tab
|
||||||
spaces_per_tab: 1
|
spaces_per_tab: 1
|
||||||
|
|
||||||
# MD011/no-reversed-links - Reversed link syntax
|
# MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md011.md
|
||||||
MD011: true
|
MD011: true
|
||||||
|
|
||||||
# MD012/no-multiple-blanks - Multiple consecutive blank lines
|
# MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md012.md
|
||||||
MD012:
|
MD012:
|
||||||
# Consecutive blank lines
|
# Consecutive blank lines
|
||||||
maximum: 1
|
maximum: 1
|
||||||
|
|
||||||
# MD013/line-length - Line length
|
# MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md013.md
|
||||||
MD013:
|
MD013:
|
||||||
# Number of characters
|
# Number of characters
|
||||||
line_length: 80
|
line_length: 80
|
||||||
|
|
@ -86,62 +86,62 @@ MD013:
|
||||||
# Stern length checking
|
# Stern length checking
|
||||||
stern: false
|
stern: false
|
||||||
|
|
||||||
# MD014/commands-show-output - Dollar signs used before commands without showing output
|
# MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md014.md
|
||||||
MD014: true
|
MD014: true
|
||||||
|
|
||||||
# MD018/no-missing-space-atx - No space after hash on atx style heading
|
# MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md018.md
|
||||||
MD018: true
|
MD018: true
|
||||||
|
|
||||||
# MD019/no-multiple-space-atx - Multiple spaces after hash on atx style heading
|
# MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md019.md
|
||||||
MD019: true
|
MD019: true
|
||||||
|
|
||||||
# MD020/no-missing-space-closed-atx - No space inside hashes on closed atx style heading
|
# MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md020.md
|
||||||
MD020: true
|
MD020: true
|
||||||
|
|
||||||
# MD021/no-multiple-space-closed-atx - Multiple spaces inside hashes on closed atx style heading
|
# MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md021.md
|
||||||
MD021: true
|
MD021: true
|
||||||
|
|
||||||
# MD022/blanks-around-headings/blanks-around-headers - Headings should be surrounded by blank lines
|
# MD022/blanks-around-headings/blanks-around-headers : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md022.md
|
||||||
MD022:
|
MD022:
|
||||||
# Blank lines above heading
|
# Blank lines above heading
|
||||||
lines_above: 1
|
lines_above: 1
|
||||||
# Blank lines below heading
|
# Blank lines below heading
|
||||||
lines_below: 1
|
lines_below: 1
|
||||||
|
|
||||||
# MD023/heading-start-left/header-start-left - Headings must start at the beginning of the line
|
# MD023/heading-start-left/header-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md023.md
|
||||||
MD023: true
|
MD023: true
|
||||||
|
|
||||||
# MD024/no-duplicate-heading/no-duplicate-header - Multiple headings with the same content
|
# MD024/no-duplicate-heading/no-duplicate-header : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md024.md
|
||||||
MD024:
|
MD024:
|
||||||
# Only check sibling headings
|
# Only check sibling headings
|
||||||
allow_different_nesting: false
|
allow_different_nesting: false
|
||||||
# Only check sibling headings
|
# Only check sibling headings
|
||||||
siblings_only: false
|
siblings_only: false
|
||||||
|
|
||||||
# MD025/single-title/single-h1 - Multiple top-level headings in the same document
|
# MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md025.md
|
||||||
MD025:
|
MD025:
|
||||||
# Heading level
|
# Heading level
|
||||||
level: 1
|
level: 1
|
||||||
# RegExp for matching title in front matter
|
# RegExp for matching title in front matter
|
||||||
front_matter_title: "^\\s*title\\s*[:=]"
|
front_matter_title: "^\\s*title\\s*[:=]"
|
||||||
|
|
||||||
# MD026/no-trailing-punctuation - Trailing punctuation in heading
|
# MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md026.md
|
||||||
MD026:
|
MD026:
|
||||||
# Punctuation characters
|
# Punctuation characters
|
||||||
punctuation: ".,;:!。,;:!"
|
punctuation: ".,;:!。,;:!"
|
||||||
|
|
||||||
# MD027/no-multiple-space-blockquote - Multiple spaces after blockquote symbol
|
# MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md027.md
|
||||||
MD027: true
|
MD027: true
|
||||||
|
|
||||||
# MD028/no-blanks-blockquote - Blank line inside blockquote
|
# MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md028.md
|
||||||
MD028: true
|
MD028: true
|
||||||
|
|
||||||
# MD029/ol-prefix - Ordered list item prefix
|
# MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md029.md
|
||||||
MD029:
|
MD029:
|
||||||
# List style
|
# List style
|
||||||
style: "one_or_ordered"
|
style: "one_or_ordered"
|
||||||
|
|
||||||
# MD030/list-marker-space - Spaces after list markers
|
# MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md030.md
|
||||||
MD030:
|
MD030:
|
||||||
# Spaces for single-line unordered list items
|
# Spaces for single-line unordered list items
|
||||||
ul_single: 1
|
ul_single: 1
|
||||||
|
|
@ -152,59 +152,59 @@ MD030:
|
||||||
# Spaces for multi-line ordered list items
|
# Spaces for multi-line ordered list items
|
||||||
ol_multi: 1
|
ol_multi: 1
|
||||||
|
|
||||||
# MD031/blanks-around-fences - Fenced code blocks should be surrounded by blank lines
|
# MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md031.md
|
||||||
MD031:
|
MD031:
|
||||||
# Include list items
|
# Include list items
|
||||||
list_items: true
|
list_items: true
|
||||||
|
|
||||||
# MD032/blanks-around-lists - Lists should be surrounded by blank lines
|
# MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md032.md
|
||||||
MD032: true
|
MD032: true
|
||||||
|
|
||||||
# MD033/no-inline-html - Inline HTML
|
# MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md033.md
|
||||||
MD033:
|
MD033:
|
||||||
# Allowed elements
|
# Allowed elements
|
||||||
allowed_elements: []
|
allowed_elements: []
|
||||||
|
|
||||||
# MD034/no-bare-urls - Bare URL used
|
# MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md034.md
|
||||||
MD034: true
|
MD034: true
|
||||||
|
|
||||||
# MD035/hr-style - Horizontal rule style
|
# MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md035.md
|
||||||
MD035:
|
MD035:
|
||||||
# Horizontal rule style
|
# Horizontal rule style
|
||||||
style: "consistent"
|
style: "consistent"
|
||||||
|
|
||||||
# MD036/no-emphasis-as-heading/no-emphasis-as-header - Emphasis used instead of a heading
|
# MD036/no-emphasis-as-heading/no-emphasis-as-header : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md036.md
|
||||||
MD036:
|
MD036:
|
||||||
# Punctuation characters
|
# Punctuation characters
|
||||||
punctuation: ".,;:!?。,;:!?"
|
punctuation: ".,;:!?。,;:!?"
|
||||||
|
|
||||||
# MD037/no-space-in-emphasis - Spaces inside emphasis markers
|
# MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md037.md
|
||||||
MD037: true
|
MD037: true
|
||||||
|
|
||||||
# MD038/no-space-in-code - Spaces inside code span elements
|
# MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md038.md
|
||||||
MD038: true
|
MD038: true
|
||||||
|
|
||||||
# MD039/no-space-in-links - Spaces inside link text
|
# MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md039.md
|
||||||
MD039: true
|
MD039: true
|
||||||
|
|
||||||
# MD040/fenced-code-language - Fenced code blocks should have a language specified
|
# MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md040.md
|
||||||
MD040:
|
MD040:
|
||||||
# List of languages
|
# List of languages
|
||||||
allowed_languages: []
|
allowed_languages: []
|
||||||
# Require language only
|
# Require language only
|
||||||
language_only: false
|
language_only: false
|
||||||
|
|
||||||
# MD041/first-line-heading/first-line-h1 - First line in a file should be a top-level heading
|
# MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md041.md
|
||||||
MD041:
|
MD041:
|
||||||
# Heading level
|
# Heading level
|
||||||
level: 1
|
level: 1
|
||||||
# RegExp for matching title in front matter
|
# RegExp for matching title in front matter
|
||||||
front_matter_title: "^\\s*title\\s*[:=]"
|
front_matter_title: "^\\s*title\\s*[:=]"
|
||||||
|
|
||||||
# MD042/no-empty-links - No empty links
|
# MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md042.md
|
||||||
MD042: true
|
MD042: true
|
||||||
|
|
||||||
# MD043/required-headings/required-headers - Required heading structure
|
# MD043/required-headings/required-headers : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md043.md
|
||||||
MD043:
|
MD043:
|
||||||
# List of headings
|
# List of headings
|
||||||
headings: []
|
headings: []
|
||||||
|
|
@ -213,7 +213,7 @@ MD043:
|
||||||
# Match case of headings
|
# Match case of headings
|
||||||
match_case: false
|
match_case: false
|
||||||
|
|
||||||
# MD044/proper-names - Proper names should have the correct capitalization
|
# MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md044.md
|
||||||
MD044:
|
MD044:
|
||||||
# List of proper names
|
# List of proper names
|
||||||
names: []
|
names: []
|
||||||
|
|
@ -222,47 +222,47 @@ MD044:
|
||||||
# Include HTML elements
|
# Include HTML elements
|
||||||
html_elements: true
|
html_elements: true
|
||||||
|
|
||||||
# MD045/no-alt-text - Images should have alternate text (alt text)
|
# MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md045.md
|
||||||
MD045: true
|
MD045: true
|
||||||
|
|
||||||
# MD046/code-block-style - Code block style
|
# MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md046.md
|
||||||
MD046:
|
MD046:
|
||||||
# Block style
|
# Block style
|
||||||
style: "consistent"
|
style: "consistent"
|
||||||
|
|
||||||
# MD047/single-trailing-newline - Files should end with a single newline character
|
# MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md047.md
|
||||||
MD047: true
|
MD047: true
|
||||||
|
|
||||||
# MD048/code-fence-style - Code fence style
|
# MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md048.md
|
||||||
MD048:
|
MD048:
|
||||||
# Code fence style
|
# Code fence style
|
||||||
style: "consistent"
|
style: "consistent"
|
||||||
|
|
||||||
# MD049/emphasis-style - Emphasis style
|
# MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md049.md
|
||||||
MD049:
|
MD049:
|
||||||
# Emphasis style
|
# Emphasis style
|
||||||
style: "consistent"
|
style: "consistent"
|
||||||
|
|
||||||
# MD050/strong-style - Strong style
|
# MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md050.md
|
||||||
MD050:
|
MD050:
|
||||||
# Strong style
|
# Strong style
|
||||||
style: "consistent"
|
style: "consistent"
|
||||||
|
|
||||||
# MD051/link-fragments - Link fragments should be valid
|
# MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md051.md
|
||||||
MD051: true
|
MD051: true
|
||||||
|
|
||||||
# MD052/reference-links-images - Reference links and images should use a label that is defined
|
# MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md052.md
|
||||||
MD052:
|
MD052:
|
||||||
# Include shortcut syntax
|
# Include shortcut syntax
|
||||||
shortcut_syntax: false
|
shortcut_syntax: false
|
||||||
|
|
||||||
# MD053/link-image-reference-definitions - Link and image reference definitions should be needed
|
# MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md053.md
|
||||||
MD053:
|
MD053:
|
||||||
# Ignored definitions
|
# Ignored definitions
|
||||||
ignored_definitions:
|
ignored_definitions:
|
||||||
- "//"
|
- "//"
|
||||||
|
|
||||||
# MD054/link-image-style - Link and image style
|
# MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md054.md
|
||||||
MD054:
|
MD054:
|
||||||
# Allow autolinks
|
# Allow autolinks
|
||||||
autolink: true
|
autolink: true
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,8 @@ for (const rule of rules) {
|
||||||
tags[tag] = tagRules;
|
tags[tag] = tagRules;
|
||||||
}
|
}
|
||||||
const scheme = {
|
const scheme = {
|
||||||
"description": rule.names.join("/") + " - " + rule.description,
|
"description":
|
||||||
|
`${rule.names.join("/")} : ${rule.description} : ${rule.information}`,
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
};
|
};
|
||||||
|
|
@ -557,7 +558,7 @@ for (const rule of rules) {
|
||||||
// Add tags
|
// Add tags
|
||||||
for (const [ tag, tagTags ] of Object.entries(tags)) {
|
for (const [ tag, tagTags ] of Object.entries(tags)) {
|
||||||
const scheme = {
|
const scheme = {
|
||||||
"description": tag + " - " + tagTags.join(", "),
|
"description": `${tag} : ${tagTags.join(", ")}`,
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@
|
||||||
"default": "https://raw.githubusercontent.com/DavidAnson/markdownlint/main/schema/markdownlint-config-schema.json"
|
"default": "https://raw.githubusercontent.com/DavidAnson/markdownlint/main/schema/markdownlint-config-schema.json"
|
||||||
},
|
},
|
||||||
"MD001": {
|
"MD001": {
|
||||||
"description": "MD001/heading-increment/header-increment - Heading levels should only increment by one level at a time",
|
"description": "MD001/heading-increment/header-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md001.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"$ref": "#/properties/MD001"
|
"$ref": "#/properties/MD001"
|
||||||
},
|
},
|
||||||
"MD002": {
|
"MD002": {
|
||||||
"description": "MD002/first-heading-h1/first-header-h1 - First heading should be a top-level heading",
|
"description": "MD002/first-heading-h1/first-header-h1 : First heading should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md002.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -57,7 +57,7 @@
|
||||||
"$ref": "#/properties/MD002"
|
"$ref": "#/properties/MD002"
|
||||||
},
|
},
|
||||||
"MD003": {
|
"MD003": {
|
||||||
"description": "MD003/heading-style/header-style - Heading style",
|
"description": "MD003/heading-style/header-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md003.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -87,7 +87,7 @@
|
||||||
"$ref": "#/properties/MD003"
|
"$ref": "#/properties/MD003"
|
||||||
},
|
},
|
||||||
"MD004": {
|
"MD004": {
|
||||||
"description": "MD004/ul-style - Unordered list style",
|
"description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md004.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -113,7 +113,7 @@
|
||||||
"$ref": "#/properties/MD004"
|
"$ref": "#/properties/MD004"
|
||||||
},
|
},
|
||||||
"MD005": {
|
"MD005": {
|
||||||
"description": "MD005/list-indent - Inconsistent indentation for list items at the same level",
|
"description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md005.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
@ -121,7 +121,7 @@
|
||||||
"$ref": "#/properties/MD005"
|
"$ref": "#/properties/MD005"
|
||||||
},
|
},
|
||||||
"MD006": {
|
"MD006": {
|
||||||
"description": "MD006/ul-start-left - Consider starting bulleted lists at the beginning of the line",
|
"description": "MD006/ul-start-left : Consider starting bulleted lists at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md006.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
@ -129,7 +129,7 @@
|
||||||
"$ref": "#/properties/MD006"
|
"$ref": "#/properties/MD006"
|
||||||
},
|
},
|
||||||
"MD007": {
|
"MD007": {
|
||||||
"description": "MD007/ul-indent - Unordered list indentation",
|
"description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md007.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -160,7 +160,7 @@
|
||||||
"$ref": "#/properties/MD007"
|
"$ref": "#/properties/MD007"
|
||||||
},
|
},
|
||||||
"MD009": {
|
"MD009": {
|
||||||
"description": "MD009/no-trailing-spaces - Trailing spaces",
|
"description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md009.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -190,7 +190,7 @@
|
||||||
"$ref": "#/properties/MD009"
|
"$ref": "#/properties/MD009"
|
||||||
},
|
},
|
||||||
"MD010": {
|
"MD010": {
|
||||||
"description": "MD010/no-hard-tabs - Hard tabs",
|
"description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md010.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -223,7 +223,7 @@
|
||||||
"$ref": "#/properties/MD010"
|
"$ref": "#/properties/MD010"
|
||||||
},
|
},
|
||||||
"MD011": {
|
"MD011": {
|
||||||
"description": "MD011/no-reversed-links - Reversed link syntax",
|
"description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md011.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
@ -231,7 +231,7 @@
|
||||||
"$ref": "#/properties/MD011"
|
"$ref": "#/properties/MD011"
|
||||||
},
|
},
|
||||||
"MD012": {
|
"MD012": {
|
||||||
"description": "MD012/no-multiple-blanks - Multiple consecutive blank lines",
|
"description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md012.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -251,7 +251,7 @@
|
||||||
"$ref": "#/properties/MD012"
|
"$ref": "#/properties/MD012"
|
||||||
},
|
},
|
||||||
"MD013": {
|
"MD013": {
|
||||||
"description": "MD013/line-length - Line length",
|
"description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md013.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -313,7 +313,7 @@
|
||||||
"$ref": "#/properties/MD013"
|
"$ref": "#/properties/MD013"
|
||||||
},
|
},
|
||||||
"MD014": {
|
"MD014": {
|
||||||
"description": "MD014/commands-show-output - Dollar signs used before commands without showing output",
|
"description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md014.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
@ -321,7 +321,7 @@
|
||||||
"$ref": "#/properties/MD014"
|
"$ref": "#/properties/MD014"
|
||||||
},
|
},
|
||||||
"MD018": {
|
"MD018": {
|
||||||
"description": "MD018/no-missing-space-atx - No space after hash on atx style heading",
|
"description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md018.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
@ -329,7 +329,7 @@
|
||||||
"$ref": "#/properties/MD018"
|
"$ref": "#/properties/MD018"
|
||||||
},
|
},
|
||||||
"MD019": {
|
"MD019": {
|
||||||
"description": "MD019/no-multiple-space-atx - Multiple spaces after hash on atx style heading",
|
"description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md019.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
@ -337,7 +337,7 @@
|
||||||
"$ref": "#/properties/MD019"
|
"$ref": "#/properties/MD019"
|
||||||
},
|
},
|
||||||
"MD020": {
|
"MD020": {
|
||||||
"description": "MD020/no-missing-space-closed-atx - No space inside hashes on closed atx style heading",
|
"description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md020.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
@ -345,7 +345,7 @@
|
||||||
"$ref": "#/properties/MD020"
|
"$ref": "#/properties/MD020"
|
||||||
},
|
},
|
||||||
"MD021": {
|
"MD021": {
|
||||||
"description": "MD021/no-multiple-space-closed-atx - Multiple spaces inside hashes on closed atx style heading",
|
"description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md021.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
@ -353,7 +353,7 @@
|
||||||
"$ref": "#/properties/MD021"
|
"$ref": "#/properties/MD021"
|
||||||
},
|
},
|
||||||
"MD022": {
|
"MD022": {
|
||||||
"description": "MD022/blanks-around-headings/blanks-around-headers - Headings should be surrounded by blank lines",
|
"description": "MD022/blanks-around-headings/blanks-around-headers : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md022.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -394,7 +394,7 @@
|
||||||
"$ref": "#/properties/MD022"
|
"$ref": "#/properties/MD022"
|
||||||
},
|
},
|
||||||
"MD023": {
|
"MD023": {
|
||||||
"description": "MD023/heading-start-left/header-start-left - Headings must start at the beginning of the line",
|
"description": "MD023/heading-start-left/header-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md023.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
@ -405,7 +405,7 @@
|
||||||
"$ref": "#/properties/MD023"
|
"$ref": "#/properties/MD023"
|
||||||
},
|
},
|
||||||
"MD024": {
|
"MD024": {
|
||||||
"description": "MD024/no-duplicate-heading/no-duplicate-header - Multiple headings with the same content",
|
"description": "MD024/no-duplicate-heading/no-duplicate-header : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md024.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -432,7 +432,7 @@
|
||||||
"$ref": "#/properties/MD024"
|
"$ref": "#/properties/MD024"
|
||||||
},
|
},
|
||||||
"MD025": {
|
"MD025": {
|
||||||
"description": "MD025/single-title/single-h1 - Multiple top-level headings in the same document",
|
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md025.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -461,7 +461,7 @@
|
||||||
"$ref": "#/properties/MD025"
|
"$ref": "#/properties/MD025"
|
||||||
},
|
},
|
||||||
"MD026": {
|
"MD026": {
|
||||||
"description": "MD026/no-trailing-punctuation - Trailing punctuation in heading",
|
"description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md026.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -480,7 +480,7 @@
|
||||||
"$ref": "#/properties/MD026"
|
"$ref": "#/properties/MD026"
|
||||||
},
|
},
|
||||||
"MD027": {
|
"MD027": {
|
||||||
"description": "MD027/no-multiple-space-blockquote - Multiple spaces after blockquote symbol",
|
"description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md027.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
@ -488,7 +488,7 @@
|
||||||
"$ref": "#/properties/MD027"
|
"$ref": "#/properties/MD027"
|
||||||
},
|
},
|
||||||
"MD028": {
|
"MD028": {
|
||||||
"description": "MD028/no-blanks-blockquote - Blank line inside blockquote",
|
"description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md028.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
@ -496,7 +496,7 @@
|
||||||
"$ref": "#/properties/MD028"
|
"$ref": "#/properties/MD028"
|
||||||
},
|
},
|
||||||
"MD029": {
|
"MD029": {
|
||||||
"description": "MD029/ol-prefix - Ordered list item prefix",
|
"description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md029.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -521,7 +521,7 @@
|
||||||
"$ref": "#/properties/MD029"
|
"$ref": "#/properties/MD029"
|
||||||
},
|
},
|
||||||
"MD030": {
|
"MD030": {
|
||||||
"description": "MD030/list-marker-space - Spaces after list markers",
|
"description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md030.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -559,7 +559,7 @@
|
||||||
"$ref": "#/properties/MD030"
|
"$ref": "#/properties/MD030"
|
||||||
},
|
},
|
||||||
"MD031": {
|
"MD031": {
|
||||||
"description": "MD031/blanks-around-fences - Fenced code blocks should be surrounded by blank lines",
|
"description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md031.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -578,7 +578,7 @@
|
||||||
"$ref": "#/properties/MD031"
|
"$ref": "#/properties/MD031"
|
||||||
},
|
},
|
||||||
"MD032": {
|
"MD032": {
|
||||||
"description": "MD032/blanks-around-lists - Lists should be surrounded by blank lines",
|
"description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md032.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
@ -586,7 +586,7 @@
|
||||||
"$ref": "#/properties/MD032"
|
"$ref": "#/properties/MD032"
|
||||||
},
|
},
|
||||||
"MD033": {
|
"MD033": {
|
||||||
"description": "MD033/no-inline-html - Inline HTML",
|
"description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md033.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -608,7 +608,7 @@
|
||||||
"$ref": "#/properties/MD033"
|
"$ref": "#/properties/MD033"
|
||||||
},
|
},
|
||||||
"MD034": {
|
"MD034": {
|
||||||
"description": "MD034/no-bare-urls - Bare URL used",
|
"description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md034.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
@ -616,7 +616,7 @@
|
||||||
"$ref": "#/properties/MD034"
|
"$ref": "#/properties/MD034"
|
||||||
},
|
},
|
||||||
"MD035": {
|
"MD035": {
|
||||||
"description": "MD035/hr-style - Horizontal rule style",
|
"description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md035.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -635,7 +635,7 @@
|
||||||
"$ref": "#/properties/MD035"
|
"$ref": "#/properties/MD035"
|
||||||
},
|
},
|
||||||
"MD036": {
|
"MD036": {
|
||||||
"description": "MD036/no-emphasis-as-heading/no-emphasis-as-header - Emphasis used instead of a heading",
|
"description": "MD036/no-emphasis-as-heading/no-emphasis-as-header : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md036.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -657,7 +657,7 @@
|
||||||
"$ref": "#/properties/MD036"
|
"$ref": "#/properties/MD036"
|
||||||
},
|
},
|
||||||
"MD037": {
|
"MD037": {
|
||||||
"description": "MD037/no-space-in-emphasis - Spaces inside emphasis markers",
|
"description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md037.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
@ -665,7 +665,7 @@
|
||||||
"$ref": "#/properties/MD037"
|
"$ref": "#/properties/MD037"
|
||||||
},
|
},
|
||||||
"MD038": {
|
"MD038": {
|
||||||
"description": "MD038/no-space-in-code - Spaces inside code span elements",
|
"description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md038.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
@ -673,7 +673,7 @@
|
||||||
"$ref": "#/properties/MD038"
|
"$ref": "#/properties/MD038"
|
||||||
},
|
},
|
||||||
"MD039": {
|
"MD039": {
|
||||||
"description": "MD039/no-space-in-links - Spaces inside link text",
|
"description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md039.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
@ -681,7 +681,7 @@
|
||||||
"$ref": "#/properties/MD039"
|
"$ref": "#/properties/MD039"
|
||||||
},
|
},
|
||||||
"MD040": {
|
"MD040": {
|
||||||
"description": "MD040/fenced-code-language - Fenced code blocks should have a language specified",
|
"description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md040.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -708,7 +708,7 @@
|
||||||
"$ref": "#/properties/MD040"
|
"$ref": "#/properties/MD040"
|
||||||
},
|
},
|
||||||
"MD041": {
|
"MD041": {
|
||||||
"description": "MD041/first-line-heading/first-line-h1 - First line in a file should be a top-level heading",
|
"description": "MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md041.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -737,7 +737,7 @@
|
||||||
"$ref": "#/properties/MD041"
|
"$ref": "#/properties/MD041"
|
||||||
},
|
},
|
||||||
"MD042": {
|
"MD042": {
|
||||||
"description": "MD042/no-empty-links - No empty links",
|
"description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md042.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
@ -745,7 +745,7 @@
|
||||||
"$ref": "#/properties/MD042"
|
"$ref": "#/properties/MD042"
|
||||||
},
|
},
|
||||||
"MD043": {
|
"MD043": {
|
||||||
"description": "MD043/required-headings/required-headers - Required heading structure",
|
"description": "MD043/required-headings/required-headers : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md043.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -785,7 +785,7 @@
|
||||||
"$ref": "#/properties/MD043"
|
"$ref": "#/properties/MD043"
|
||||||
},
|
},
|
||||||
"MD044": {
|
"MD044": {
|
||||||
"description": "MD044/proper-names - Proper names should have the correct capitalization",
|
"description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md044.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -817,7 +817,7 @@
|
||||||
"$ref": "#/properties/MD044"
|
"$ref": "#/properties/MD044"
|
||||||
},
|
},
|
||||||
"MD045": {
|
"MD045": {
|
||||||
"description": "MD045/no-alt-text - Images should have alternate text (alt text)",
|
"description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md045.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
@ -825,7 +825,7 @@
|
||||||
"$ref": "#/properties/MD045"
|
"$ref": "#/properties/MD045"
|
||||||
},
|
},
|
||||||
"MD046": {
|
"MD046": {
|
||||||
"description": "MD046/code-block-style - Code block style",
|
"description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md046.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -849,7 +849,7 @@
|
||||||
"$ref": "#/properties/MD046"
|
"$ref": "#/properties/MD046"
|
||||||
},
|
},
|
||||||
"MD047": {
|
"MD047": {
|
||||||
"description": "MD047/single-trailing-newline - Files should end with a single newline character",
|
"description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md047.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
@ -857,7 +857,7 @@
|
||||||
"$ref": "#/properties/MD047"
|
"$ref": "#/properties/MD047"
|
||||||
},
|
},
|
||||||
"MD048": {
|
"MD048": {
|
||||||
"description": "MD048/code-fence-style - Code fence style",
|
"description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md048.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -881,7 +881,7 @@
|
||||||
"$ref": "#/properties/MD048"
|
"$ref": "#/properties/MD048"
|
||||||
},
|
},
|
||||||
"MD049": {
|
"MD049": {
|
||||||
"description": "MD049/emphasis-style - Emphasis style",
|
"description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md049.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -905,7 +905,7 @@
|
||||||
"$ref": "#/properties/MD049"
|
"$ref": "#/properties/MD049"
|
||||||
},
|
},
|
||||||
"MD050": {
|
"MD050": {
|
||||||
"description": "MD050/strong-style - Strong style",
|
"description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md050.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -929,7 +929,7 @@
|
||||||
"$ref": "#/properties/MD050"
|
"$ref": "#/properties/MD050"
|
||||||
},
|
},
|
||||||
"MD051": {
|
"MD051": {
|
||||||
"description": "MD051/link-fragments - Link fragments should be valid",
|
"description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md051.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
@ -937,7 +937,7 @@
|
||||||
"$ref": "#/properties/MD051"
|
"$ref": "#/properties/MD051"
|
||||||
},
|
},
|
||||||
"MD052": {
|
"MD052": {
|
||||||
"description": "MD052/reference-links-images - Reference links and images should use a label that is defined",
|
"description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md052.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -956,7 +956,7 @@
|
||||||
"$ref": "#/properties/MD052"
|
"$ref": "#/properties/MD052"
|
||||||
},
|
},
|
||||||
"MD053": {
|
"MD053": {
|
||||||
"description": "MD053/link-image-reference-definitions - Link and image reference definitions should be needed",
|
"description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md053.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -980,7 +980,7 @@
|
||||||
"$ref": "#/properties/MD053"
|
"$ref": "#/properties/MD053"
|
||||||
},
|
},
|
||||||
"MD054": {
|
"MD054": {
|
||||||
"description": "MD054/link-image-style - Link and image style",
|
"description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md054.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
|
@ -1009,122 +1009,122 @@
|
||||||
"$ref": "#/properties/MD054"
|
"$ref": "#/properties/MD054"
|
||||||
},
|
},
|
||||||
"headings": {
|
"headings": {
|
||||||
"description": "headings - MD001, MD002, MD003, MD018, MD019, MD020, MD021, MD022, MD023, MD024, MD025, MD026, MD036, MD041, MD043",
|
"description": "headings : MD001, MD002, MD003, MD018, MD019, MD020, MD021, MD022, MD023, MD024, MD025, MD026, MD036, MD041, MD043",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"headers": {
|
"headers": {
|
||||||
"description": "headers - MD001, MD002, MD003, MD018, MD019, MD020, MD021, MD022, MD023, MD024, MD025, MD026, MD036, MD041, MD043",
|
"description": "headers : MD001, MD002, MD003, MD018, MD019, MD020, MD021, MD022, MD023, MD024, MD025, MD026, MD036, MD041, MD043",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"bullet": {
|
"bullet": {
|
||||||
"description": "bullet - MD004, MD005, MD006, MD007, MD032",
|
"description": "bullet : MD004, MD005, MD006, MD007, MD032",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"ul": {
|
"ul": {
|
||||||
"description": "ul - MD004, MD005, MD006, MD007, MD030, MD032",
|
"description": "ul : MD004, MD005, MD006, MD007, MD030, MD032",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"indentation": {
|
"indentation": {
|
||||||
"description": "indentation - MD005, MD006, MD007, MD027",
|
"description": "indentation : MD005, MD006, MD007, MD027",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"whitespace": {
|
"whitespace": {
|
||||||
"description": "whitespace - MD009, MD010, MD012, MD027, MD028, MD030, MD037, MD038, MD039",
|
"description": "whitespace : MD009, MD010, MD012, MD027, MD028, MD030, MD037, MD038, MD039",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"hard_tab": {
|
"hard_tab": {
|
||||||
"description": "hard_tab - MD010",
|
"description": "hard_tab : MD010",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"links": {
|
"links": {
|
||||||
"description": "links - MD011, MD034, MD039, MD042, MD051, MD052, MD053, MD054",
|
"description": "links : MD011, MD034, MD039, MD042, MD051, MD052, MD053, MD054",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"blank_lines": {
|
"blank_lines": {
|
||||||
"description": "blank_lines - MD012, MD022, MD031, MD032, MD047",
|
"description": "blank_lines : MD012, MD022, MD031, MD032, MD047",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"line_length": {
|
"line_length": {
|
||||||
"description": "line_length - MD013",
|
"description": "line_length : MD013",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"code": {
|
"code": {
|
||||||
"description": "code - MD014, MD031, MD038, MD040, MD046, MD048",
|
"description": "code : MD014, MD031, MD038, MD040, MD046, MD048",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"atx": {
|
"atx": {
|
||||||
"description": "atx - MD018, MD019",
|
"description": "atx : MD018, MD019",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"spaces": {
|
"spaces": {
|
||||||
"description": "spaces - MD018, MD019, MD020, MD021, MD023",
|
"description": "spaces : MD018, MD019, MD020, MD021, MD023",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"atx_closed": {
|
"atx_closed": {
|
||||||
"description": "atx_closed - MD020, MD021",
|
"description": "atx_closed : MD020, MD021",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"blockquote": {
|
"blockquote": {
|
||||||
"description": "blockquote - MD027, MD028",
|
"description": "blockquote : MD027, MD028",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"ol": {
|
"ol": {
|
||||||
"description": "ol - MD029, MD030, MD032",
|
"description": "ol : MD029, MD030, MD032",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"html": {
|
"html": {
|
||||||
"description": "html - MD033",
|
"description": "html : MD033",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"url": {
|
"url": {
|
||||||
"description": "url - MD034",
|
"description": "url : MD034",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"hr": {
|
"hr": {
|
||||||
"description": "hr - MD035",
|
"description": "hr : MD035",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"emphasis": {
|
"emphasis": {
|
||||||
"description": "emphasis - MD036, MD037, MD049, MD050",
|
"description": "emphasis : MD036, MD037, MD049, MD050",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"language": {
|
"language": {
|
||||||
"description": "language - MD040",
|
"description": "language : MD040",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"spelling": {
|
"spelling": {
|
||||||
"description": "spelling - MD044",
|
"description": "spelling : MD044",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"accessibility": {
|
"accessibility": {
|
||||||
"description": "accessibility - MD045",
|
"description": "accessibility : MD045",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"images": {
|
"images": {
|
||||||
"description": "images - MD045, MD052, MD053, MD054",
|
"description": "images : MD045, MD052, MD053, MD054",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue