forked from microsoft/TypeScript-Handbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.markdownlint.json
36 lines (36 loc) · 912 Bytes
/
.markdownlint.json
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
{
"default": false,
"heading-increment": "atx",
"ul-style": {
"style": "asterisk"
},
"list-indent": true,
"ul-start-left": true,
"ul-indent": {
"indent": 4
},
"no-trailing-spaces": true,
"no-hard-tabs": true,
"no-reversed-links": true,
"no-multiple-blanks": true,
"no-missing-space-atx": true,
"no-multiple-space-atx": true,
"blanks-around-headings": true,
"heading-start-left": true,
"no-trailing-punctuation": {
"punctuation": ".,;:!"
},
"no-multiple-space-blockquote": true,
"no-blanks-blockquote": true,
"ol-prefix": {
"style": "ordered"
},
"list-marker-space": true,
"blanks-around-fences": true,
"blanks-around-lists": true,
"no-bare-urls": true,
"hr-style": "---",
"no-space-in-emphasis": true,
"no-space-in-links": true,
"fenced-code-language": true
}