forked from mui/material-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.markdownlint.jsonc
34 lines (34 loc) · 1.03 KB
/
.markdownlint.jsonc
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
{
// MD013/line-length. Already handled by Prettier.
"MD013": false,
// MD033/no-inline-html. We use it from time to time, it's fine.
"MD033": false,
// MD034/no-bare-urls. Not a concern for us, our Markdown interpreter supports it.
"MD034": false,
// MD014/commands-show-output. It's OK.
"MD014": false,
"MD025": {
// Heading level
"level": 1,
// RegExp for matching title in front matter
"front_matter_title": ""
},
// MD024/no-duplicate-heading/no-duplicate-header
"MD024": {
"siblings_only": true
},
// MD036/no-emphasis-as-heading/no-emphasis-as-header. It's OK.
"MD036": false,
// MD029/ol-prefix. Buggy
"MD029": false,
// MD004/ul-style. Buggy
"MD004": false,
// MD028/no-blanks-blockquote prevent double blockquote
"MD028": false,
// MD031/blanks-around-fences Some code blocks inside li
"MD031": false,
// MD051/link-fragments. Many false positives in the changelog.
"MD051": false,
// MD052/reference-links-images. Many false positives in the changelog.
"MD052": false
}