Skip to content

Commit 9d6985d

Browse files
authored
Disable MD034 / no-bare-urls (#27)
* Disable MD034 / no-bare-urls While we should avoid bare URLs, the fix for this rule (surrounding the URL with <>) breaks rendering, since Docusaurus currently runs all files through the MDX engine. * Sort markdownlint config by name (instead of rule ID)
1 parent 66384d3 commit 9d6985d

File tree

1 file changed

+18
-17
lines changed

1 file changed

+18
-17
lines changed

.markdownlint.json

+18-17
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,36 @@
11
{
2+
"code-block-style": {
3+
"style": "fenced"
4+
},
5+
"code-fence-style": {
6+
"style": "backtick"
7+
},
8+
"emphasis-style": {
9+
"style": "underscore"
10+
},
211
"heading-style": {
312
"style": "atx"
413
},
5-
"ul-style": {
6-
"style": "dash"
14+
"hr-style": {
15+
"style": "---"
716
},
817
"line-length": {
9-
"line_length": 80,
1018
"code_blocks": false,
19+
"line_length": 80,
1120
"tables": false
1221
},
13-
"hr-style": {
14-
"style": "---"
15-
},
22+
"no-bare-urls": false,
1623
"proper-names": {
17-
"names": ["CodeGate", "Copilot", "GitHub"],
18-
"code_blocks": false
19-
},
20-
"code-block-style": {
21-
"style": "fenced"
22-
},
23-
"code-fence-style": {
24-
"style": "backtick"
25-
},
26-
"emphasis-style": {
27-
"style": "underscore"
24+
"code_blocks": false,
25+
"names": ["CodeGate", "Copilot", "GitHub"]
2826
},
2927
"strong-style": {
3028
"style": "asterisk"
3129
},
3230
"table-pipe-style": {
3331
"style": "leading_and_trailing"
32+
},
33+
"ul-style": {
34+
"style": "dash"
3435
}
3536
}

0 commit comments

Comments
 (0)