forked from vectordotdev/vector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.markdownlintrc
45 lines (44 loc) · 1.19 KB
/
.markdownlintrc
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
{
"default": false,
"MD001": true,
"MD003": { "style": "atx" },
"MD004": true,
"MD005": true,
"MD007": { "indent": 2 },
"MD009": true,
"MD010": true,
"MD011": true,
"MD012": false, // due to the way we generate docs, it is not possible to strictly enforce new lines
"MD013": false, // due to the way we generate docs, it is not possible to enforce a line length
"MD014": false, // we allow commands without output
"MD018": true,
"MD019": true,
"MD020": true,
"MD021": true,
"MD022": true,
"MD023": true,
"MD024": false, // due to the way we generate docs, there are cases where duplicate headings are out of our control
"MD025": true,
"MD026": { "punctuation": ".,;:" },
"MD027": true,
"MD028": true,
"MD030": false,
"MD031": true,
"MD032": true,
"MD033": false, // we allow HTML
"MD034": false, // we allow full URLs in special cases, such as component attributes
"MD035": true,
"MD036": true,
"MD037": true,
"MD038": true,
"MD039": true,
"MD040": true,
"MD041": false, // top-level headings are automatically generated for us
"MD042": true,
"MD043": true,
"MD044": true,
"MD045": false,
"MD046": true,
"MD047": true,
"MD048": true
}