-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.markdownlint-cli2.jsonc
More file actions
32 lines (32 loc) · 895 Bytes
/
Copy path.markdownlint-cli2.jsonc
File metadata and controls
32 lines (32 loc) · 895 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
{
"$schema": "https://raw.githubusercontent.com/DavidAnson/markdownlint-cli2/main/schema/markdownlint-cli2-config-schema.json",
"config": {
"default": true,
"line-length": {
"line_length": 80,
"code_blocks": false,
"tables": false
},
"ul-style": {
"style": "dash"
},
"no-duplicate-heading": {
"siblings_only": true
},
"no-inline-html": false,
"table-column-style": {
"style": "aligned",
"aligned_delimiter": true
},
"ul-indent": {
"indent": 4
},
"list-marker-space": {
"ul_multi": 2,
"ul_single": 2
},
"no-emphasis-as-heading": false
},
"ignores": ["**/node_modules", "**/dist", "**/build", "**/out", "**/.next"],
"gitignore": false
}