Skip to content

Commit b612e81

Browse files
mbohaladamkudrna
authored andcommitted
Update markdownlint rules
1 parent 8ad8c4e commit b612e81

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.markdownlint.jsonc

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33
{
44
"default": true,
55
"MD007": { // Unordered list indentation
6-
"indent": 4 // 4 spaces so MkDocs can render nested lists correctly
6+
"indent": 4 // 4 spaces so parsers (MkDocs, Bitbucket, etc.) can render nested lists correctly
77
},
8-
"MD033": false, // Allow inline JSX and custom web components
9-
"MD024": false, // Allow duplicate headings
10-
"line-length": {
11-
"code_block_line_length": 120,
12-
"tables": false,
13-
"code_blocks": false
14-
}
8+
"MD013": { // Line length
9+
"code_block_line_length": 120, // Max length inside code blocks
10+
"tables": false // Do not check length inside tables
11+
},
12+
"MD024": { // Allow duplicate headings
13+
"allow_different_nesting": true // Allow same heading level under different parents
14+
},
15+
"MD033": false // Allow inline HTML and custom components
1516
}

0 commit comments

Comments
 (0)