markdownlint/schema/markdownlint-config-schema.json

1138 lines
32 KiB
JSON
Raw Normal View History

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "markdownlint configuration schema",
"type": "object",
"properties": {
"default": {
"description": "Default state for all rules",
"type": "boolean",
"default": true
},
"extends": {
"description": "Path to configuration file to extend",
"type": [
"string",
"null"
],
"default": null
},
"$schema": {
"description": "JSON Schema URI (used by some editors)",
"type": "string",
"default": "https://raw.githubusercontent.com/DavidAnson/markdownlint/main/schema/markdownlint-config-schema.json"
},
"MD001": {
"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",
"default": true
},
"heading-increment": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD001"
},
"header-increment": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD001"
},
"MD002": {
"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": [
"boolean",
"object"
],
"default": true,
"properties": {
"level": {
"description": "Heading level",
"type": "integer",
2022-01-23 16:25:30 +10:00
"minimum": 1,
"maximum": 6,
"default": 1
}
},
"additionalProperties": false
},
"first-heading-h1": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD002"
},
"first-header-h1": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD002"
},
"MD003": {
"description": "MD003/heading-style/header-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md003.md",
"type": [
"boolean",
"object"
],
"default": true,
"properties": {
"style": {
"description": "Heading style",
"type": "string",
"enum": [
"consistent",
"atx",
"atx_closed",
"setext",
"setext_with_atx",
"setext_with_atx_closed"
],
"default": "consistent"
}
},
"additionalProperties": false
},
"heading-style": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD003"
},
"header-style": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD003"
},
"MD004": {
"description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md004.md",
"type": [
"boolean",
"object"
],
"default": true,
"properties": {
"style": {
"description": "List style",
"type": "string",
"enum": [
"consistent",
"asterisk",
"plus",
"dash",
"sublist"
],
"default": "consistent"
}
},
"additionalProperties": false
},
"ul-style": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD004"
},
"MD005": {
"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",
"default": true
},
"list-indent": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD005"
},
"MD006": {
"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",
"default": true
},
"ul-start-left": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD006"
},
"MD007": {
"description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md007.md",
"type": [
"boolean",
"object"
],
"default": true,
"properties": {
"indent": {
"description": "Spaces for indent",
"type": "integer",
2022-01-23 16:25:30 +10:00
"minimum": 1,
"default": 2
},
"start_indented": {
"description": "Whether to indent the first level of the list",
"type": "boolean",
"default": false
},
"start_indent": {
"description": "Spaces for first level indent (when start_indented is set)",
"type": "integer",
2022-01-23 16:25:30 +10:00
"minimum": 1,
"default": 2
}
},
"additionalProperties": false
},
"ul-indent": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD007"
},
"MD009": {
"description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md009.md",
"type": [
"boolean",
"object"
],
"default": true,
"properties": {
"br_spaces": {
"description": "Spaces for line break",
"type": "integer",
2022-01-23 16:25:30 +10:00
"minimum": 0,
"default": 2
},
"list_item_empty_lines": {
"description": "Allow spaces for empty lines in list items",
"type": "boolean",
"default": false
},
"strict": {
"description": "Include unnecessary breaks",
"type": "boolean",
"default": false
}
},
"additionalProperties": false
},
"no-trailing-spaces": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD009"
},
"MD010": {
"description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md010.md",
"type": [
"boolean",
"object"
],
"default": true,
"properties": {
"code_blocks": {
"description": "Include code blocks",
"type": "boolean",
"default": true
},
"ignore_code_languages": {
"description": "Fenced code languages to ignore",
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"spaces_per_tab": {
"description": "Number of spaces for each hard tab",
2022-01-23 16:25:30 +10:00
"type": "integer",
"minimum": 0,
"default": 1
}
},
"additionalProperties": false
},
"no-hard-tabs": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD010"
},
"MD011": {
"description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md011.md",
"type": "boolean",
"default": true
},
"no-reversed-links": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD011"
},
"MD012": {
"description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md012.md",
"type": [
"boolean",
"object"
],
"default": true,
"properties": {
"maximum": {
"description": "Consecutive blank lines",
"type": "integer",
2022-01-23 16:25:30 +10:00
"minimum": 1,
"default": 1
}
},
"additionalProperties": false
},
"no-multiple-blanks": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD012"
},
"MD013": {
"description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md013.md",
"type": [
"boolean",
"object"
],
"default": true,
"properties": {
"line_length": {
"description": "Number of characters",
"type": "integer",
2022-01-23 16:25:30 +10:00
"minimum": 1,
"default": 80
},
"heading_line_length": {
"description": "Number of characters for headings",
"type": "integer",
2022-01-23 16:25:30 +10:00
"minimum": 1,
"default": 80
},
"code_block_line_length": {
"description": "Number of characters for code blocks",
"type": "integer",
2022-01-23 16:25:30 +10:00
"minimum": 1,
"default": 80
},
"code_blocks": {
"description": "Include code blocks",
"type": "boolean",
"default": true
},
"tables": {
"description": "Include tables",
"type": "boolean",
"default": true
},
"headings": {
"description": "Include headings",
"type": "boolean",
"default": true
},
"headers": {
"description": "Include headings",
"type": "boolean",
"default": true
},
"strict": {
"description": "Strict length checking",
"type": "boolean",
"default": false
},
"stern": {
"description": "Stern length checking",
"type": "boolean",
"default": false
}
},
"additionalProperties": false
},
"line-length": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD013"
},
"MD014": {
"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",
"default": true
},
"commands-show-output": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD014"
},
"MD018": {
"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",
"default": true
},
"no-missing-space-atx": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD018"
},
"MD019": {
"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",
"default": true
},
"no-multiple-space-atx": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD019"
},
"MD020": {
"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",
"default": true
},
"no-missing-space-closed-atx": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD020"
},
"MD021": {
"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",
"default": true
},
"no-multiple-space-closed-atx": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD021"
},
"MD022": {
"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": [
"boolean",
"object"
],
"default": true,
"properties": {
"lines_above": {
"description": "Blank lines above heading",
"type": [
"integer",
"array"
],
"items": {
"type": "integer"
},
"minimum": -1,
"default": 1
},
"lines_below": {
"description": "Blank lines below heading",
"type": [
"integer",
"array"
],
"items": {
"type": "integer"
},
"minimum": -1,
"default": 1
}
},
"additionalProperties": false
},
"blanks-around-headings": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD022"
},
"blanks-around-headers": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD022"
},
"MD023": {
"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",
"default": true
},
"heading-start-left": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD023"
},
"header-start-left": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD023"
},
"MD024": {
"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": [
"boolean",
"object"
],
"default": true,
"properties": {
"allow_different_nesting": {
"description": "Only check sibling headings",
"type": "boolean",
"default": false
},
"siblings_only": {
"description": "Only check sibling headings",
"type": "boolean",
"default": false
}
},
"additionalProperties": false
},
"no-duplicate-heading": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD024"
},
"no-duplicate-header": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD024"
},
"MD025": {
"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": [
"boolean",
"object"
],
"default": true,
"properties": {
"level": {
"description": "Heading level",
"type": "integer",
2022-01-23 16:25:30 +10:00
"minimum": 1,
"maximum": 6,
"default": 1
},
"front_matter_title": {
"description": "RegExp for matching title in front matter",
"type": "string",
"default": "^\\s*title\\s*[:=]"
}
},
"additionalProperties": false
},
"single-title": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD025"
},
"single-h1": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD025"
},
"MD026": {
"description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md026.md",
"type": [
"boolean",
"object"
],
"default": true,
"properties": {
"punctuation": {
"description": "Punctuation characters",
"type": "string",
"default": ".,;:!。,;:!"
}
},
"additionalProperties": false
},
"no-trailing-punctuation": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD026"
},
"MD027": {
"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",
"default": true
},
"no-multiple-space-blockquote": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD027"
},
"MD028": {
"description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md028.md",
"type": "boolean",
"default": true
},
"no-blanks-blockquote": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD028"
},
"MD029": {
"description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md029.md",
"type": [
"boolean",
"object"
],
"default": true,
"properties": {
"style": {
"description": "List style",
"type": "string",
"enum": [
"one",
"ordered",
"one_or_ordered",
"zero"
],
"default": "one_or_ordered"
}
},
"additionalProperties": false
},
"ol-prefix": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD029"
},
"MD030": {
"description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md030.md",
"type": [
"boolean",
"object"
],
"default": true,
"properties": {
"ul_single": {
"description": "Spaces for single-line unordered list items",
"type": "integer",
2022-01-23 16:25:30 +10:00
"minimum": 1,
"default": 1
},
"ol_single": {
"description": "Spaces for single-line ordered list items",
"type": "integer",
2022-01-23 16:25:30 +10:00
"minimum": 1,
"default": 1
},
"ul_multi": {
"description": "Spaces for multi-line unordered list items",
"type": "integer",
2022-01-23 16:25:30 +10:00
"minimum": 1,
"default": 1
},
"ol_multi": {
"description": "Spaces for multi-line ordered list items",
"type": "integer",
2022-01-23 16:25:30 +10:00
"minimum": 1,
"default": 1
}
},
"additionalProperties": false
},
"list-marker-space": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD030"
},
"MD031": {
"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": [
"boolean",
"object"
],
"default": true,
"properties": {
"list_items": {
"description": "Include list items",
"type": "boolean",
"default": true
}
},
"additionalProperties": false
},
"blanks-around-fences": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD031"
},
"MD032": {
"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",
"default": true
},
"blanks-around-lists": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD032"
},
"MD033": {
"description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md033.md",
"type": [
"boolean",
"object"
],
"default": true,
"properties": {
"allowed_elements": {
"description": "Allowed elements",
"type": "array",
"items": {
"type": "string"
},
"default": []
}
},
"additionalProperties": false
},
"no-inline-html": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD033"
},
"MD034": {
"description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md034.md",
"type": "boolean",
"default": true
},
"no-bare-urls": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD034"
},
"MD035": {
"description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md035.md",
"type": [
"boolean",
"object"
],
"default": true,
"properties": {
"style": {
"description": "Horizontal rule style",
"type": "string",
"default": "consistent"
}
},
"additionalProperties": false
},
"hr-style": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD035"
},
"MD036": {
"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": [
"boolean",
"object"
],
"default": true,
"properties": {
"punctuation": {
"description": "Punctuation characters",
"type": "string",
"default": ".,;:!?。,;:!?"
}
},
"additionalProperties": false
},
"no-emphasis-as-heading": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD036"
},
"no-emphasis-as-header": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD036"
},
"MD037": {
"description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md037.md",
"type": "boolean",
"default": true
},
"no-space-in-emphasis": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD037"
},
"MD038": {
"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",
"default": true
},
"no-space-in-code": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD038"
},
"MD039": {
"description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md039.md",
"type": "boolean",
"default": true
},
"no-space-in-links": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD039"
},
"MD040": {
"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": [
"boolean",
"object"
],
"default": true,
"properties": {
"allowed_languages": {
"description": "List of languages",
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"language_only": {
"description": "Require language only",
"type": "boolean",
"default": false
}
},
"additionalProperties": false
},
"fenced-code-language": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD040"
},
"MD041": {
"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": [
"boolean",
"object"
],
"default": true,
"properties": {
"level": {
"description": "Heading level",
"type": "integer",
2022-01-23 16:25:30 +10:00
"minimum": 1,
"maximum": 6,
"default": 1
},
"front_matter_title": {
"description": "RegExp for matching title in front matter",
"type": "string",
"default": "^\\s*title\\s*[:=]"
}
},
"additionalProperties": false
},
"first-line-heading": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD041"
},
"first-line-h1": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD041"
},
"MD042": {
"description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md042.md",
"type": "boolean",
"default": true
},
"no-empty-links": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD042"
},
"MD043": {
"description": "MD043/required-headings/required-headers : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md043.md",
"type": [
"boolean",
"object"
],
"default": true,
"properties": {
"headings": {
"description": "List of headings",
"type": "array",
"items": {
2022-01-23 16:25:30 +10:00
"type": "string",
"pattern": "^(\\*|\\+|#{1,6} .*)$"
},
"default": []
},
"headers": {
"description": "List of headings",
"type": "array",
"items": {
2022-01-23 16:25:30 +10:00
"type": "string",
"pattern": "^(\\*|\\+|#{1,6} .*)$"
},
"default": []
},
"match_case": {
"description": "Match case of headings",
"type": "boolean",
"default": false
}
},
"additionalProperties": false
},
"required-headings": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD043"
},
"required-headers": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD043"
},
"MD044": {
"description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md044.md",
"type": [
"boolean",
"object"
],
"default": true,
"properties": {
"names": {
"description": "List of proper names",
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"code_blocks": {
"description": "Include code blocks",
"type": "boolean",
"default": true
},
"html_elements": {
"description": "Include HTML elements",
"type": "boolean",
"default": true
}
},
"additionalProperties": false
},
"proper-names": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD044"
},
2017-12-29 17:01:21 -08:00
"MD045": {
"description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md045.md",
2017-12-29 17:01:21 -08:00
"type": "boolean",
"default": true
},
"no-alt-text": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD045"
2017-12-29 17:01:21 -08:00
},
"MD046": {
"description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md046.md",
"type": [
"boolean",
"object"
],
"default": true,
"properties": {
"style": {
"description": "Block style",
"type": "string",
"enum": [
"consistent",
"fenced",
"indented"
],
"default": "consistent"
}
},
"additionalProperties": false
},
"code-block-style": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD046"
},
"MD047": {
"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",
"default": true
},
"single-trailing-newline": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD047"
},
"MD048": {
"description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md048.md",
"type": [
"boolean",
"object"
],
"default": true,
"properties": {
"style": {
2021-05-14 08:45:14 -07:00
"description": "Code fence style",
"type": "string",
"enum": [
"consistent",
"backtick",
"tilde"
],
"default": "consistent"
}
},
"additionalProperties": false
},
"code-fence-style": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD048"
},
2021-10-24 06:54:58 +02:00
"MD049": {
"description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md049.md",
2021-10-24 06:54:58 +02:00
"type": [
"boolean",
"object"
],
"default": true,
"properties": {
"style": {
"description": "Emphasis style",
2021-10-24 06:54:58 +02:00
"type": "string",
"enum": [
"consistent",
"asterisk",
"underscore"
],
"default": "consistent"
}
},
"additionalProperties": false
},
"emphasis-style": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD049"
2021-10-24 06:54:58 +02:00
},
2021-10-21 06:42:48 +02:00
"MD050": {
"description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md050.md",
2021-10-21 06:42:48 +02:00
"type": [
"boolean",
"object"
],
"default": true,
"properties": {
"style": {
"description": "Strong style",
2021-10-21 06:42:48 +02:00
"type": "string",
"enum": [
"consistent",
"asterisk",
"underscore"
],
"default": "consistent"
}
},
"additionalProperties": false
},
"strong-style": {
2022-01-23 16:25:30 +10:00
"$ref": "#/properties/MD050"
2021-10-21 06:42:48 +02:00
},
"MD051": {
"description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md051.md",
"type": "boolean",
"default": true
},
"link-fragments": {
"$ref": "#/properties/MD051"
},
"MD052": {
"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": [
"boolean",
"object"
],
"default": true,
"properties": {
"shortcut_syntax": {
"description": "Include shortcut syntax",
"type": "boolean",
"default": false
}
},
"additionalProperties": false
},
"reference-links-images": {
"$ref": "#/properties/MD052"
},
"MD053": {
"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": [
"boolean",
"object"
],
"default": true,
"properties": {
"ignored_definitions": {
"description": "Ignored definitions",
"type": "array",
"items": {
"type": "string"
},
"default": [
"//"
]
}
},
"additionalProperties": false
},
"link-image-reference-definitions": {
"$ref": "#/properties/MD053"
},
"MD054": {
"description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md054.md",
"type": [
"boolean",
"object"
],
"default": true,
"properties": {
"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
}
},
"additionalProperties": false
},
"link-image-style": {
"$ref": "#/properties/MD054"
},
"headings": {
"description": "headings : MD001, MD002, MD003, MD018, MD019, MD020, MD021, MD022, MD023, MD024, MD025, MD026, MD036, MD041, MD043",
"type": "boolean",
"default": true
},
"headers": {
"description": "headers : MD001, MD002, MD003, MD018, MD019, MD020, MD021, MD022, MD023, MD024, MD025, MD026, MD036, MD041, MD043",
"type": "boolean",
"default": true
},
"bullet": {
"description": "bullet : MD004, MD005, MD006, MD007, MD032",
"type": "boolean",
"default": true
},
"ul": {
"description": "ul : MD004, MD005, MD006, MD007, MD030, MD032",
"type": "boolean",
"default": true
},
"indentation": {
"description": "indentation : MD005, MD006, MD007, MD027",
"type": "boolean",
"default": true
},
"whitespace": {
"description": "whitespace : MD009, MD010, MD012, MD027, MD028, MD030, MD037, MD038, MD039",
"type": "boolean",
"default": true
},
"hard_tab": {
"description": "hard_tab : MD010",
"type": "boolean",
"default": true
},
"links": {
"description": "links : MD011, MD034, MD039, MD042, MD051, MD052, MD053, MD054",
"type": "boolean",
"default": true
},
"blank_lines": {
"description": "blank_lines : MD012, MD022, MD031, MD032, MD047",
"type": "boolean",
"default": true
},
"line_length": {
"description": "line_length : MD013",
"type": "boolean",
"default": true
},
"code": {
"description": "code : MD014, MD031, MD038, MD040, MD046, MD048",
"type": "boolean",
"default": true
},
"atx": {
"description": "atx : MD018, MD019",
"type": "boolean",
"default": true
},
"spaces": {
"description": "spaces : MD018, MD019, MD020, MD021, MD023",
"type": "boolean",
"default": true
},
"atx_closed": {
"description": "atx_closed : MD020, MD021",
"type": "boolean",
"default": true
},
"blockquote": {
"description": "blockquote : MD027, MD028",
"type": "boolean",
"default": true
},
"ol": {
"description": "ol : MD029, MD030, MD032",
"type": "boolean",
"default": true
},
"html": {
"description": "html : MD033",
"type": "boolean",
"default": true
},
"url": {
"description": "url : MD034",
"type": "boolean",
"default": true
},
"hr": {
"description": "hr : MD035",
"type": "boolean",
"default": true
},
"emphasis": {
"description": "emphasis : MD036, MD037, MD049, MD050",
"type": "boolean",
"default": true
},
"language": {
"description": "language : MD040",
"type": "boolean",
"default": true
},
"spelling": {
"description": "spelling : MD044",
"type": "boolean",
"default": true
2017-12-29 17:01:21 -08:00
},
"accessibility": {
"description": "accessibility : MD045",
2017-12-29 17:01:21 -08:00
"type": "boolean",
"default": true
},
"images": {
"description": "images : MD045, MD052, MD053, MD054",
2017-12-29 17:01:21 -08:00
"type": "boolean",
"default": true
}
},
"additionalProperties": {
"type": [
"boolean",
"object"
]
}
}