Skip to content

Commit

Permalink
Udate markdonwlint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
mbohal committed Nov 29, 2023
1 parent ba6ac9d commit 3b96a07
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .markdownlint.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
{
"default": true,
"MD007": { // Unordered list indentation
"indent": 4 // 4 spaces so MkDocs can render nested lists correctly
"indent": 4 // 4 spaces so parsers (MkDocs, Bitbucket, etc.) can render nested lists correctly
},
"MD033": false, // Allow inline JSX and custom web components
"MD024": false, // Allow duplicate headings
"line-length": {
"MD013": {
"code_block_line_length": 120,
"tables": false,
"code_blocks": false
}
"tables": false
},
"MD024": { // Allow duplicate headings
"allow_different_nesting": true // Allow same heading level under different parents
},
"MD033": false // Allow inline HTML and custom components
}

0 comments on commit 3b96a07

Please sign in to comment.