-
Notifications
You must be signed in to change notification settings - Fork 48
/
.markdownlint.json
132 lines (132 loc) · 2.68 KB
/
.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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"blanks-around-fences": true,
"blanks-around-headers": true,
"blanks-around-lists": true,
"code-block-style": {
"style": "fenced"
},
"code-fence-style": {
"style": "backtick"
},
"commands-show-output": true,
"docsmd.alert": true,
"docsmd.codesnippet": true,
"docsmd.column": true,
"docsmd.image": true,
"docsmd.moniker": true,
"docsmd.no-loc": true,
"docsmd.row": true,
"docsmd.securelinks": true,
"docsmd.syntax": true,
"docsmd.video": true,
"docsmd.xref": true,
"docsmd.zone": true,
"emphasis-style": {
"style": "underscore"
},
"fenced-code-language": false,
"first-line-h1": {
"front_matter_title": ""
},
"header-increment": true,
"header-start-left": true,
"header-style": {
"style": "atx"
},
"hr-style": {
"style": "---"
},
"line-length": {
"code_block_line_length": 90,
"code_blocks": true,
"heading_line_length": 100,
"headings": true,
"line_length": 100,
"stern": true,
"tables": false
},
"list-indent": true,
"list-marker-space": true,
"no-alt-text": true,
"no-bare-urls": true,
"no-blanks-blockquote": true,
"no-duplicate-header": {
"siblings_only": true
},
"no-emphasis-as-header": true,
"no-empty-links": true,
"no-hard-tabs": true,
"no-inline-html": {
"allowed_elements": [
"a",
"br",
"code",
"kbd",
"li",
"properties",
"sup",
"tags",
"ul"
]
},
"no-missing-space-atx": true,
"no-missing-space-closed-atx": true,
"no-multiple-blanks": true,
"no-multiple-space-atx": true,
"no-multiple-space-blockquote": true,
"no-multiple-space-closed-atx": true,
"no-reversed-links": true,
"no-space-in-code": true,
"no-space-in-emphasis": true,
"no-space-in-links": true,
"no-trailing-punctuation": {
"punctuation": ".,;:!。,;:!?"
},
"no-trailing-spaces": {
"br_spaces": 2,
"strict": true
},
"ol-prefix": {
"style": "one"
},
"proper-names": {
"code_blocks": false,
"names": [
"PowerShell",
"IntelliSense",
"Authenticode",
"CentOS",
"Contoso",
"CoreOS",
"Debian",
"Ubuntu",
"openSUSE",
"RHEL",
"JavaScript",
".NET",
"NuGet",
"VS Code",
"Newtonsoft"
]
},
"required-headers": false,
"single-h1": {
"front_matter_title": "",
"level": 1
},
"single-trailing-newline": true,
"strong-style": {
"style": "asterisk"
},
"ul-indent": {
"indent": 2,
"start_indented": false
},
"ul-start-left": true,
"ul-style": {
"style": "dash"
},
"link-fragments": true,
"reference-links-images": true,
"link-image-reference-definitions": true
}