mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
Update to version 0.37.1.
This commit is contained in:
parent
dc26c50688
commit
af086995ed
9 changed files with 426 additions and 422 deletions
|
@ -1,13 +1,13 @@
|
|||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"$id": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.37.0/schema/markdownlint-config-schema-strict.json",
|
||||
"$id": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.37.1/schema/markdownlint-config-schema-strict.json",
|
||||
"title": "markdownlint configuration schema",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"$schema": {
|
||||
"description": "JSON Schema URI (expected by some editors)",
|
||||
"type": "string",
|
||||
"default": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.37.0/schema/markdownlint-config-schema.json"
|
||||
"default": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.37.1/schema/markdownlint-config-schema.json"
|
||||
},
|
||||
"default": {
|
||||
"description": "Default state for all rules",
|
||||
|
@ -23,17 +23,17 @@
|
|||
"default": null
|
||||
},
|
||||
"MD001": {
|
||||
"description": "MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md001.md",
|
||||
"description": "MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md001.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"heading-increment": {
|
||||
"description": "MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md001.md",
|
||||
"description": "MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md001.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"MD003": {
|
||||
"description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md003.md",
|
||||
"description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md003.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -57,7 +57,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"heading-style": {
|
||||
"description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md003.md",
|
||||
"description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md003.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -81,7 +81,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD004": {
|
||||
"description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md004.md",
|
||||
"description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md004.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -104,7 +104,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"ul-style": {
|
||||
"description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md004.md",
|
||||
"description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md004.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -127,17 +127,17 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD005": {
|
||||
"description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md005.md",
|
||||
"description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md005.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"list-indent": {
|
||||
"description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md005.md",
|
||||
"description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md005.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"MD007": {
|
||||
"description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md007.md",
|
||||
"description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md007.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -165,7 +165,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"ul-indent": {
|
||||
"description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md007.md",
|
||||
"description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md007.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -193,7 +193,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD009": {
|
||||
"description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md009.md",
|
||||
"description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md009.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -220,7 +220,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"no-trailing-spaces": {
|
||||
"description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md009.md",
|
||||
"description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md009.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -247,7 +247,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD010": {
|
||||
"description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md010.md",
|
||||
"description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md010.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -277,7 +277,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"no-hard-tabs": {
|
||||
"description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md010.md",
|
||||
"description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md010.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -307,17 +307,17 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD011": {
|
||||
"description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md011.md",
|
||||
"description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md011.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"no-reversed-links": {
|
||||
"description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md011.md",
|
||||
"description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md011.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"MD012": {
|
||||
"description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md012.md",
|
||||
"description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md012.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -334,7 +334,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"no-multiple-blanks": {
|
||||
"description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md012.md",
|
||||
"description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md012.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -351,7 +351,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD013": {
|
||||
"description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md013.md",
|
||||
"description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md013.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -405,7 +405,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"line-length": {
|
||||
"description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md013.md",
|
||||
"description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md013.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -459,57 +459,57 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD014": {
|
||||
"description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md014.md",
|
||||
"description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md014.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"commands-show-output": {
|
||||
"description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md014.md",
|
||||
"description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md014.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"MD018": {
|
||||
"description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md018.md",
|
||||
"description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md018.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"no-missing-space-atx": {
|
||||
"description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md018.md",
|
||||
"description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md018.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"MD019": {
|
||||
"description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md019.md",
|
||||
"description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md019.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"no-multiple-space-atx": {
|
||||
"description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md019.md",
|
||||
"description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md019.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"MD020": {
|
||||
"description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md020.md",
|
||||
"description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md020.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"no-missing-space-closed-atx": {
|
||||
"description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md020.md",
|
||||
"description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md020.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"MD021": {
|
||||
"description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md021.md",
|
||||
"description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md021.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"no-multiple-space-closed-atx": {
|
||||
"description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md021.md",
|
||||
"description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md021.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"MD022": {
|
||||
"description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md022.md",
|
||||
"description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md022.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -544,7 +544,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"blanks-around-headings": {
|
||||
"description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md022.md",
|
||||
"description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md022.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -579,17 +579,17 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD023": {
|
||||
"description": "MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md023.md",
|
||||
"description": "MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md023.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"heading-start-left": {
|
||||
"description": "MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md023.md",
|
||||
"description": "MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md023.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"MD024": {
|
||||
"description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md024.md",
|
||||
"description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md024.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -605,7 +605,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"no-duplicate-heading": {
|
||||
"description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md024.md",
|
||||
"description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md024.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -621,7 +621,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD025": {
|
||||
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md025.md",
|
||||
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md025.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -644,7 +644,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"single-title": {
|
||||
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md025.md",
|
||||
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md025.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -667,7 +667,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"single-h1": {
|
||||
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md025.md",
|
||||
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md025.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -690,7 +690,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD026": {
|
||||
"description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md026.md",
|
||||
"description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md026.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -706,7 +706,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"no-trailing-punctuation": {
|
||||
"description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md026.md",
|
||||
"description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md026.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -722,27 +722,27 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD027": {
|
||||
"description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md027.md",
|
||||
"description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md027.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"no-multiple-space-blockquote": {
|
||||
"description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md027.md",
|
||||
"description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md027.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"MD028": {
|
||||
"description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md028.md",
|
||||
"description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md028.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"no-blanks-blockquote": {
|
||||
"description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md028.md",
|
||||
"description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md028.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"MD029": {
|
||||
"description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md029.md",
|
||||
"description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md029.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -764,7 +764,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"ol-prefix": {
|
||||
"description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md029.md",
|
||||
"description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md029.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -786,7 +786,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD030": {
|
||||
"description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md030.md",
|
||||
"description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md030.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -821,7 +821,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"list-marker-space": {
|
||||
"description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md030.md",
|
||||
"description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md030.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -856,7 +856,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD031": {
|
||||
"description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md031.md",
|
||||
"description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md031.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -872,7 +872,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"blanks-around-fences": {
|
||||
"description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md031.md",
|
||||
"description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md031.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -888,17 +888,17 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD032": {
|
||||
"description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md032.md",
|
||||
"description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md032.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"blanks-around-lists": {
|
||||
"description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md032.md",
|
||||
"description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md032.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"MD033": {
|
||||
"description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md033.md",
|
||||
"description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md033.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -917,7 +917,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"no-inline-html": {
|
||||
"description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md033.md",
|
||||
"description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md033.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -936,17 +936,17 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD034": {
|
||||
"description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md034.md",
|
||||
"description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md034.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"no-bare-urls": {
|
||||
"description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md034.md",
|
||||
"description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md034.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"MD035": {
|
||||
"description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md035.md",
|
||||
"description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md035.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -962,7 +962,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"hr-style": {
|
||||
"description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md035.md",
|
||||
"description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md035.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -978,7 +978,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD036": {
|
||||
"description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md036.md",
|
||||
"description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md036.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -994,7 +994,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"no-emphasis-as-heading": {
|
||||
"description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md036.md",
|
||||
"description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md036.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1010,37 +1010,37 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD037": {
|
||||
"description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md037.md",
|
||||
"description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md037.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"no-space-in-emphasis": {
|
||||
"description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md037.md",
|
||||
"description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md037.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"MD038": {
|
||||
"description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md038.md",
|
||||
"description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md038.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"no-space-in-code": {
|
||||
"description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md038.md",
|
||||
"description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md038.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"MD039": {
|
||||
"description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md039.md",
|
||||
"description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md039.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"no-space-in-links": {
|
||||
"description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md039.md",
|
||||
"description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md039.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"MD040": {
|
||||
"description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md040.md",
|
||||
"description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md040.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1064,7 +1064,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"fenced-code-language": {
|
||||
"description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md040.md",
|
||||
"description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md040.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1088,7 +1088,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"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.37.0/doc/md041.md",
|
||||
"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.37.1/doc/md041.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1111,7 +1111,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"first-line-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.37.0/doc/md041.md",
|
||||
"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.37.1/doc/md041.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1134,7 +1134,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"first-line-h1": {
|
||||
"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.37.0/doc/md041.md",
|
||||
"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.37.1/doc/md041.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1157,17 +1157,17 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD042": {
|
||||
"description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md042.md",
|
||||
"description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md042.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"no-empty-links": {
|
||||
"description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md042.md",
|
||||
"description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md042.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"MD043": {
|
||||
"description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md043.md",
|
||||
"description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md043.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1192,7 +1192,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"required-headings": {
|
||||
"description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md043.md",
|
||||
"description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md043.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1217,7 +1217,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD044": {
|
||||
"description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md044.md",
|
||||
"description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md044.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1246,7 +1246,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"proper-names": {
|
||||
"description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md044.md",
|
||||
"description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md044.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1275,17 +1275,17 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD045": {
|
||||
"description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md045.md",
|
||||
"description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md045.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"no-alt-text": {
|
||||
"description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md045.md",
|
||||
"description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md045.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"MD046": {
|
||||
"description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md046.md",
|
||||
"description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md046.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1306,7 +1306,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"code-block-style": {
|
||||
"description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md046.md",
|
||||
"description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md046.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1327,17 +1327,17 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD047": {
|
||||
"description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md047.md",
|
||||
"description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md047.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"single-trailing-newline": {
|
||||
"description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md047.md",
|
||||
"description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md047.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"MD048": {
|
||||
"description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md048.md",
|
||||
"description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md048.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1358,7 +1358,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"code-fence-style": {
|
||||
"description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md048.md",
|
||||
"description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md048.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1379,7 +1379,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD049": {
|
||||
"description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md049.md",
|
||||
"description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md049.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1400,7 +1400,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"emphasis-style": {
|
||||
"description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md049.md",
|
||||
"description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md049.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1421,7 +1421,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD050": {
|
||||
"description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md050.md",
|
||||
"description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md050.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1442,7 +1442,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"strong-style": {
|
||||
"description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md050.md",
|
||||
"description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md050.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1463,7 +1463,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD051": {
|
||||
"description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md051.md",
|
||||
"description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md051.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1479,7 +1479,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"link-fragments": {
|
||||
"description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md051.md",
|
||||
"description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md051.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1495,7 +1495,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD052": {
|
||||
"description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md052.md",
|
||||
"description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md052.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1511,7 +1511,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"reference-links-images": {
|
||||
"description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md052.md",
|
||||
"description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md052.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1527,7 +1527,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD053": {
|
||||
"description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md053.md",
|
||||
"description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md053.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1548,7 +1548,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"link-image-reference-definitions": {
|
||||
"description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md053.md",
|
||||
"description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md053.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1569,7 +1569,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD054": {
|
||||
"description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md054.md",
|
||||
"description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md054.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1610,7 +1610,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"link-image-style": {
|
||||
"description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md054.md",
|
||||
"description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md054.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1651,7 +1651,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD055": {
|
||||
"description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md055.md",
|
||||
"description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md055.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1674,7 +1674,7 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"table-pipe-style": {
|
||||
"description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md055.md",
|
||||
"description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md055.md",
|
||||
"type": [
|
||||
"boolean",
|
||||
"object"
|
||||
|
@ -1697,22 +1697,22 @@
|
|||
"additionalProperties": false
|
||||
},
|
||||
"MD056": {
|
||||
"description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md056.md",
|
||||
"description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md056.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"table-column-count": {
|
||||
"description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md056.md",
|
||||
"description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md056.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"MD058": {
|
||||
"description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md058.md",
|
||||
"description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md058.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"blanks-around-tables": {
|
||||
"description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.0/doc/md058.md",
|
||||
"description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.1/doc/md058.md",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue