-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.markdownlint-cli2.jsonc
More file actions
57 lines (57 loc) · 1.18 KB
/
.markdownlint-cli2.jsonc
File metadata and controls
57 lines (57 loc) · 1.18 KB
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
50
51
52
53
54
55
56
57
{
"config": {
"default": true,
"heading-increment": true,
"heading-style": {
"style": "atx"
},
"line-length": false,
"ul-style": {
"style": "consistent"
},
"MD007": {
"indent": 2
},
"MD013": {
"line_length": 100,
"code_blocks": false,
"tables": false,
"heading_line_length": 80
},
"MD024": {
"siblings_only": true
},
"MD029": false,
"MD033": {
"allowed_elements": [
"span"
]
},
"MD035": {
"style": "---"
},
"MD046": {
"style": "fenced"
},
"MD048": {
"style": "backtick"
},
"first-line-h1": false,
"fenced-code-language": true
},
"gitignore": true,
"fix": true,
"globs": [
"**/*.md"
],
"ignores": [
"CHANGELOG.md",
".claude/**",
".venv/**",
"**/node_modules/**",
"**/__pycache__/**",
"**/*.tpl.md",
"**/*.mdc",
".kiro/steering/*.md"
]
}