mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 14:00:13 +01:00
This commit is contained in:
parent
6302b26c99
commit
47ff95e8d2
19 changed files with 157 additions and 4 deletions
|
|
@ -55,7 +55,9 @@
|
|||
// MD010/no-hard-tabs - Hard tabs
|
||||
"MD010": {
|
||||
// Include code blocks
|
||||
"code_blocks": true
|
||||
"code_blocks": true,
|
||||
// Number of spaces for each hard tab
|
||||
"spaces_per_tab": 1
|
||||
},
|
||||
|
||||
// MD011/no-reversed-links - Reversed link syntax
|
||||
|
|
|
|||
|
|
@ -50,6 +50,8 @@ MD009:
|
|||
MD010:
|
||||
# Include code blocks
|
||||
code_blocks: true
|
||||
# Number of spaces for each hard tab
|
||||
spaces_per_tab: 1
|
||||
|
||||
# MD011/no-reversed-links - Reversed link syntax
|
||||
MD011: true
|
||||
|
|
|
|||
|
|
@ -135,6 +135,11 @@ rules.forEach(function forRule(rule) {
|
|||
"description": "Include code blocks",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"spaces_per_tab": {
|
||||
"description": "Number of spaces for each hard tab",
|
||||
"type": "number",
|
||||
"default": 1
|
||||
}
|
||||
};
|
||||
break;
|
||||
|
|
|
|||
|
|
@ -327,6 +327,11 @@
|
|||
"description": "Include code blocks",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"spaces_per_tab": {
|
||||
"description": "Number of spaces for each hard tab",
|
||||
"type": "number",
|
||||
"default": 1
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
|
|
@ -343,6 +348,11 @@
|
|||
"description": "Include code blocks",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"spaces_per_tab": {
|
||||
"description": "Number of spaces for each hard tab",
|
||||
"type": "number",
|
||||
"default": 1
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue