Skip to content

Commit

Permalink
Change required indent to 4 rather than 2 (OWASP#1896)
Browse files Browse the repository at this point in the history
  • Loading branch information
tghosth authored Mar 17, 2024
1 parent 45f6f28 commit 0d95e85
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .markdownlint.jsonc
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
// https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md

"MD004": {"style": "asterisk"}, // ul-style
"MD004": {"style": "asterisk"}, // ul-style
"MD007": {"indent": "4"}, // ul-style
"MD013": false, // line-length
"MD024": {"allow_different_nesting": true}, // no-duplicate-header
"MD026": {"punctuation": ".,;:"}, // no-trailing-punctuation (allows !?)
Expand All @@ -11,7 +12,8 @@
"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
"MD049": {"style": "underscore"}, // emphasis-style
"MD050": {"style": "asterisk"} // strong-style


}

0 comments on commit 0d95e85

Please sign in to comment.