forked from OWASP/ASVS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.markdownlint.jsonc
17 lines (15 loc) · 932 Bytes
/
.markdownlint.jsonc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
// https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md
"MD004": {"style": "asterisk"}, // ul-style
"MD013": false, // line-length
"MD024": {"allow_different_nesting": true}, // no-duplicate-header
"MD026": {"punctuation": ".,;:"}, // no-trailing-punctuation (allows !?)
"MD033": false, // no-inline-html
"MD034": false, // bare URLs
"MD035": {"style": "---"}, // hr-style
"MD036": {"punctuation": ".,;:!。"}, // no-emphasis-as-header
"MD041": false, // first-line-h1
"MD046": {"style": "fenced"} , // code-block-style
"MD049": {"style": "underscore"}, // emphasis-style
"MD050": {"style": "asterisk"} // strong-style
}