-
Notifications
You must be signed in to change notification settings - Fork 2
/
.markdownlint.json
42 lines (42 loc) · 1.26 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
{
"default": true,
"header-increment": true,
"first-header-h1": true,
"header-style": { "style": "consistent" },
"ul-style": { "style": "consistent" },
"list-indent": true,
"ul-start-left": true,
"ul-indent": { "indent": 2 },
"no-trailing-spaces": { "br_spaces": 2 },
"no-hard-tabs": true,
"no-reversed-links": true,
"no-multiple-blanks": true,
"line-length": false,
"commands-show-output": true,
"no-missing-space-atx": true,
"no-multiple-space-atx": true,
"no-missing-space-closed-atx": true,
"no-multiple-space-closed-atx": true,
"blanks-around-headers": true,
"header-start-left": true,
"no-duplicate-header": false,
"single-h1": true,
"no-trailing-punctuation": { "punctuation": ".,;:!" },
"no-multiple-space-blockquote": true,
"no-blanks-blockquote": true,
"ol-prefix": { "style": "one" },
"list-marker-space": true,
"blanks-around-fences": true,
"blanks-around-lists": true,
"no-inline-html": { "allowed_elements": [] },
"no-bare-urls": true,
"hr-style": { "style": "consistent" },
"no-emphasis-as-header": true,
"no-space-in-emphasis": true,
"no-space-in-code": true,
"no-space-in-links": true,
"fenced-code-language": true,
"first-line-h1": true,
"no-empty-links": true,
"required-headers": false
}