-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.markdownlint-cli2.jsonc
More file actions
49 lines (49 loc) · 966 Bytes
/
.markdownlint-cli2.jsonc
File metadata and controls
49 lines (49 loc) · 966 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"config": {
"default": true,
"MD013": {
"line_length": 256,
"heading_line_length": 256,
"code_block_line_length": 256,
"tables": false
},
"MD025": false,
"MD033": {
"allowed_elements": ["br", "details", "summary"]
},
"MD046": {
"style": "fenced"
},
"MD024": {
"siblings_only": true
},
"MD022": {
"lines_above": 1,
"lines_below": 1
},
"MD026": {
"punctuation": ".,;:!"
},
"MD031": {
"list_items": true
},
"MD032": true,
"MD036": false,
"MD040": {
"allowed_languages": ["yaml", "python", "bash", "shell", "json", "toml", "markdown", "text", "console", "diff"],
"language_only": false
}
},
"globs": ["**/*.md"],
"ignores": [
".venv/**",
"venv/**",
"node_modules/**",
"__pycache__/**",
"htmlcov/**",
".mypy_cache/**",
".pytest_cache/**",
"dist/**",
"build/**"
]
}