forked from ustclug/Linux201-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.markdownlint.jsonc
More file actions
21 lines (21 loc) · 775 Bytes
/
.markdownlint.jsonc
File metadata and controls
21 lines (21 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"MD007": { // Unordered list indentation
"indent": 4
},
"MD013": false, // Line length
"MD033": { // Inline HTML
"allowed_elements": [
"br", // Useful in tables
"figure", "figcaption",
"s", "del" // Python-Markdown parsing issue with CJK
]
},
"MD046": false, // Use fenced code block style, too many false positives
"MD051": false, // Link fragments should be valid, false positives
"MD052": false, // Reference link should be defined and used, false positives with includes/man.md
"MD010": false, // Some command output contains hard tabs
"MD024": { // Allow multiple headers with the same content, if they are not siblings
"siblings_only": true
},
"MD053": false // False positive when reference in admonition
}