-
-
Notifications
You must be signed in to change notification settings - Fork 387
/
Copy path.markdownlint-cli2.jsonc
49 lines (49 loc) · 1.05 KB
/
.markdownlint-cli2.jsonc
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,
"heading-style": {
"style": "atx"
},
"ul-style": {
"style": "asterisk"
},
"no-trailing-spaces": {
"strict": true
},
"line-length": {
"code_block_line_length": 170,
"heading_line_length": 170,
"line_length": 170
},
"no-inline-html": {
"allowed_elements": [
"a",
"details",
"img",
"p",
"summary"
]
},
"code-block-style": {
"style": "fenced"
},
"code-fence-style": {
"style": "backtick"
},
"emphasis-style": {
"style": "underscore"
},
"strong-style": {
"style": "asterisk"
},
"table-pipe-style": {
"style": "leading_and_trailing"
}
},
"globs": [
"**/*.md"
],
"ignores": [
"cmake/README_findsdl2.md"
]
}