forked from BillyBlaze/OctoPrint-FullScreen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.markdownlint.json
74 lines (74 loc) · 1.59 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
{
"default": true,
"blanks-around-fences": true,
"blanks-around-headings": true,
"blanks-around-lists": true,
"code-block-style": {
"style": "fenced"
},
"code-fence-style": {
"style": "backtick"
},
"commands-show-output": true,
"emphasis-style": {
"style": "underscore"
},
"fenced-code-language": true,
"first-line-h1": true,
"heading-increment": true,
"heading-start-left": true,
"heading-style": {
"style": "atx"
},
"hr-style": {
"style": "---"
},
"line_length": false,
"link-fragments": true,
"list-indent": true,
"no-alt-text": true,
"no-bare-urls": false,
"no-blanks-blockquote": true,
"no-duplicate-header": {
"siblings_only": true
},
"no-emphasis-as-heading": true,
"no-empty-links": true,
"no-hard-tabs": {
"code_blocks": true,
"spaces_per_tab": 2
},
"no-inline-html": false,
"no-missing-space-atx": true,
"no-multiple-blanks": true,
"no-multiple-space-atx": true,
"no-multiple-space-blockquote": true,
"no-reversed-links": true,
"no-space-in-code": true,
"no-space-in-emphasis": true,
"no-space-in-links": true,
"no-trailing-punctuation": false,
"no-trailing-spaces": {
"list_item_empty_lines": true
},
"ol-prefix": {
"style": "one_or_ordered"
},
"proper-names": false,
"reference-links-images": false,
"single-h1": true,
"single-trailing-newline": true,
"strong-style": {
"style": "asterisk"
},
"table-column-count": true,
"table-pipe-style": {
"style": "leading_and_trailing"
},
"ul-indent": {
"indent": 2
},
"ul-style": {
"style": "dash"
}
}