Skip to content

Commit bced823

Browse files
committed
Added markdownlint config
1 parent 693b090 commit bced823

File tree

1 file changed

+34
-8
lines changed

1 file changed

+34
-8
lines changed

.markdownlint.json

Lines changed: 34 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,35 @@
11
{
2-
"MD013": false,
3-
"MD030": {
4-
"ul_single": 3,
5-
"ol_single": 1,
6-
"ul_multi": 3,
7-
"ol_multi": 1
8-
}
9-
}
2+
"no-duplicate-heading": false,
3+
"no-inline-html": {
4+
"allowed_elements": [
5+
"figure",
6+
"figcaption",
7+
"img",
8+
"p"
9+
]
10+
},
11+
"no-bare-urls": false,
12+
"comment": "The following entries disable rules that may conflict with Prettier see https://github.com/DavidAnson/markdownlint/blob/v0.34.0/style/prettier.json",
13+
"blanks-around-fences": false,
14+
"blanks-around-headings": false,
15+
"blanks-around-lists": false,
16+
"code-fence-style": false,
17+
"emphasis-style": false,
18+
"heading-start-left": false,
19+
"hr-style": false,
20+
"line-length": false,
21+
"list-indent": false,
22+
"list-marker-space": false,
23+
"no-blanks-blockquote": false,
24+
"no-hard-tabs": false,
25+
"no-missing-space-atx": false,
26+
"no-missing-space-closed-atx": false,
27+
"no-multiple-blanks": false,
28+
"no-multiple-space-atx": false,
29+
"no-multiple-space-blockquote": false,
30+
"no-multiple-space-closed-atx": false,
31+
"no-trailing-spaces": false,
32+
"ol-prefix": false,
33+
"strong-style": false,
34+
"ul-indent": false
35+
}

0 commit comments

Comments
 (0)