unpredictable-lord / .markdownlint.jsonc
ryomo's picture
feat: add .editorconfig and .markdownlint.jsonc for code style consistency
f9a19b2
raw
history blame contribute delete
372 Bytes
// 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
}