File size: 372 Bytes
f9a19b2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
// https://github.com/DavidAnson/markdownlint/blob/main/schema/.markdownlint.jsonc
{
// MD013: Line length
"MD013": false,
// MD024: Multiple headers with the same content
"MD024": {
"siblings_only": true
},
// MD036: Emphasis used instead of a header
"MD036": false,
// MD040: Fenced code blocks should have a language specified
"MD040": false
}
|