-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.markdownlint-cli2.jsonc
More file actions
32 lines (32 loc) · 886 Bytes
/
Copy path.markdownlint-cli2.jsonc
File metadata and controls
32 lines (32 loc) · 886 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
{
// https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md
"config": {
"default": true,
"MD003": {
"style": "atx"
},
"MD007": {
"indent": 2
},
"MD013": false,
"MD024": {
"siblings_only": true
},
"MD033": false,
"MD041": false,
"MD049": {
"style": "asterisk"
},
"MD050": {
"style": "asterisk"
},
"MD060": false
},
"ignores": [
".genreleases/", // generated release notes — machine-authored, not hand-edited
"incoming/**", // staging area for external content before review
".documentation/drafts/**", // in-progress drafts not yet ready for lint enforcement
".documentation/devspark/runs/**", // runtime artifacts — gitignored, not committed to repo
".pytest_cache/**" // pytest runtime cache — not markdown content
]
}