Skip to content

Commit c4b66af

Browse files
committedNov 30, 2021
Fix markdownlint
1 parent 818a640 commit c4b66af

File tree

2 files changed

+66
-1
lines changed

2 files changed

+66
-1
lines changed
 

‎.markdownlint.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

‎markdownlint.json

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{
2+
"header-increment": true,
3+
"first-header-h1": true,
4+
"header-style": {
5+
"style": "atx"
6+
},
7+
"ul-style": {
8+
"style": "dash"
9+
},
10+
"list-indent": true,
11+
"ul-start-left": false,
12+
"ul-indent": {
13+
"indent": 2
14+
},
15+
"no-trailing-spaces": {
16+
"br-spaces": 0,
17+
"list_item_empty_lines": false
18+
},
19+
"no-hard-tabs": {
20+
"code_blocks": true
21+
},
22+
"no-reversed-links": true,
23+
"no-multiple-blanks": {
24+
"maximum": 1
25+
},
26+
"line-length": false,
27+
"commands-show-output": true,
28+
"no-missing-space-atx": true,
29+
"no-multiple-space-atx": true,
30+
"no-missing-space-closed-atx": true,
31+
"no-multiple-space-closed-atx": true,
32+
"blanks-around-headers": false,
33+
"header-start-left": true,
34+
"no-duplicate-header": true,
35+
"single-h1": false,
36+
"no-trailing-punctuation": {
37+
"punctuation" : ".,:!?"
38+
},
39+
"no-multiple-space-blockquote": true,
40+
"no-blanks-blockquote": false,
41+
"ol-prefix": {
42+
"style": "one"
43+
},
44+
"list-marker-space": {
45+
"ul_single": 1,
46+
"ol_single": 1,
47+
"ul_multi": 1,
48+
"ol_multi": 1
49+
},
50+
"blanks-around-fences": true,
51+
"blanks-around-lists": false,
52+
"no-inline-html": false,
53+
"no-bare-urls": true,
54+
"hr-style": {
55+
"style": "consistent"
56+
},
57+
"no-emphasis-as-header": false,
58+
"no-space-in-emphasis": true,
59+
"no-space-in-code": true,
60+
"no-space-in-links": true,
61+
"fenced-code-language": true,
62+
"first-line-h1": true,
63+
"no-empty-links": true,
64+
"required-headers": false,
65+
"proper-names": false
66+
}

0 commit comments

Comments
 (0)
Please sign in to comment.