-
Notifications
You must be signed in to change notification settings - Fork 0
/
.markdownlint.jsonc
73 lines (73 loc) · 1.39 KB
/
.markdownlint.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"heading-increment": true,
"no-hard-tabs": false,
"first-line-heading": false,
"heading-style": {
"style": "atx"
},
"ul-style": {
"style": "dash"
},
"list-indent": true,
"ul-indent": {
"indent": 4,
"start_indented": false
},
"no-trailing-spaces": {
"strict": true,
"br_spaces": 2
},
"no-reversed-links": true,
"no-inline-html": false,
"no-emphasis-as-heading": false,
"no-multiple-blanks": {
"maximum": 2
},
"line-length": false,
"commands-show-output": true,
"no-missing-space-atx": true,
"no-multiple-space-atx": true,
"blanks-around-headings": true,
"heading-start-left": true,
"no-duplicate-heading": {
"siblings_only": true
},
"single-title": true,
"no-trailing-punctuation": true,
"no-multiple-space-blockquote": true,
"no-blanks-blockquote": true,
"ol-prefix": {
"style": "one_or_ordered"
},
"list-marker-space": true,
"blanks-around-fences": {
"list_items": false
},
"blanks-around-lists": true,
"no-bare-urls": true,
"hr-style": {
"style": "---"
},
"no-space-in-emphasis": true,
"no-space-in-code": true,
"no-space-in-links": true,
"fenced-code-language": true,
"no-empty-links": true,
"proper-names": {
"names": [
"JavaScript",
"TypeScript",
"npm",
"Node.js",
"GitHub"
]
},
"no-alt-text": true,
"code-block-style": {
"style": "fenced"
},
"single-trailing-newline": true,
"code-fence-style": {
"style": "backtick"
}
}