-
Notifications
You must be signed in to change notification settings - Fork 11
/
.markdownlint.json
109 lines (109 loc) · 2 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
{
// MD003
"heading-style": {
"style": "atx"
},
// MD004
"ul-style": {
"style": "consistent"
},
// MD007
"ul-indent": {
"indent": 2
},
// MD009
"no-trailing-spaces": {
"br_spaces": 2,
"list_item_empty_lines": false,
"strict": false
},
// MD010
"no-hard-tabs": {
"code_blocks": true,
"ignore_code_languages": [
"Makefile",
"makefile"
],
"spaces_per_tab": 1
},
// MD011
"no-multiple-blanks": {
"maximum": 1
},
// MD013
"line-length": {
"strict": false,
"line_length": 2000,
"code_blocks": false
},
// MD022
"blanks-around-headers": {
"lines_above": 1,
"lines_below": 1
},
// MD025
"single-title": {
"level": 1
},
// MD024
"no-duplicate-heading": {
"allow_different_nesting": false,
"siblings_only": true
},
// MD029
"ol-prefix": {
//"style": "one_or_ordered"
"style": "one"
},
// MD030
"list-marker-space": {
"ol_multi": 1,
"ol_single": 1,
"ul_multi": 1,
"ul_single": 1
},
// MD031
"blanks-around-fences": {
"list_items": true
},
// MD033
"no-inline-html": {
"allowed_elements": [
"div", "br"
]
},
// MD035
"hr-style": {
"style": "---"
},
// MD040
"fenced-code-language": {
"allowed_languages": [],
"language_only": false
},
// MD041
"first-line-heading": {
"level": 1
},
// MD044
"proper-names": {
"code_blocks": true,
"names": []
},
// MD046
"code-block-style": {
"style": "fenced"
},
// MD048
"code-fence-style": {
"style": "backtick"
},
// MD049
"emphasis-style": {
"style": "asterisk"
},
// MD050
"strong-style": {
"style": "asterisk"
}
}