-
Notifications
You must be signed in to change notification settings - Fork 1
/
.markdownlint.json
112 lines (112 loc) · 2.4 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
{
"heading-increment": false,
"first-header-h1": true,
"header-style": {
"style": "atx"
},
"ul-style": {
"style": "asterisk"
},
"list-indent": true,
"ul-start-left": true,
"ul-indent": {
"indent": 4
},
"no-trailing-spaces": {
"br_spaces": 2,
"list_item_empty_lines": false
},
"single-trailing-newline": true,
"no-hard-tabs": {
"code_blocks": false
},
"no-reversed-links": true,
"no-multiple-blanks": {
"maximum": 1
},
"line-length": {
"line_length": 10000,
"code_blocks": false,
"tables": false
},
"commands-show-output": false,
"no-missing-space-atx": true,
"no-multiple-space-atx": true,
"blanks-around-headers": {
"lines_above": 1,
"lines_below": 1
},
"header-start-left": true,
"no-duplicate-header": {
"allow_different_nesting": true
},
"single-h1": {
"level": 1
},
"no-trailing-punctuation": {
"punctuation": ".,;:"
},
"no-multiple-space-blockquote": true,
"no-blanks-blockquote": true,
"ol-prefix": {
"style": "one"
},
"list-marker-space": {
"ul_single": 1,
"ol_single": 1,
"ul_multi": 1,
"ol_multi": 1
},
"blanks-around-fences": {
"list_items": true
},
"blanks-around-lists": true,
"no-inline-html": {
"allowed_elements": [
"a",
"b",
"br",
"code",
"details",
"div",
"img",
"li",
"nobr",
"p",
"pre",
"summary",
"ul"
]
},
"no-bare-urls": true,
"hr-style": {
"style": "consistent"
},
"no-emphasis-as-header": true,
"no-space-in-emphasis": false,
"no-space-in-code": false,
"no-space-in-links": true,
"fenced-code-language": true,
"code-block-style": {
"style": "fenced"
},
"first-line-h1": false,
"no-empty-links": true,
"proper-names": {
"names": [
"Bash",
"Docker",
"Dockerfile",
"EditorConfig",
"Git",
"GitHub",
"Golang",
"JavaScript",
"Node",
"Node.js",
"npm",
"PHP"
],
"code_blocks": false
}
}