Skip to content

Commit 44f4a07

Browse files
committed
feat: add Markdown linter configuration file
This is for [markdownlint-cli2](https://github.com/DavidAnson/markdownlint-cli2).
1 parent cb0f893 commit 44f4a07

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.markdownlint.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"blank_lines": {
3+
"maximum": 2
4+
},
5+
"html": {
6+
"allowed_elements": [
7+
"a",
8+
"b",
9+
"br",
10+
"code",
11+
"details",
12+
"div",
13+
"em",
14+
"i",
15+
"img",
16+
"ins",
17+
"kbd",
18+
"p",
19+
"span",
20+
"summary"
21+
]
22+
},
23+
"line-length": {
24+
"line_length": 10000
25+
},
26+
"no-alt-text": true,
27+
"no-duplicate-heading": {
28+
"allow_different_nesting": true
29+
}
30+
}

0 commit comments

Comments
 (0)