Skip to content

Commit ae1f563

Browse files
🪲 [Fix]: Fix markdown linter (#32)
## Description This pull request updates the Markdown linting configuration to relax the rule about duplicate headings, allowing the same heading (such as "INPUTS" and "OUTPUTS") to appear multiple times in different sections. Markdown linting configuration: * Disabled the `MD024` rule (`no-duplicate-heading`) to permit duplicate headings in different sections, which is useful for repeated items like "INPUTS" and "OUTPUTS". (.github/linters/.markdown-lint.yml)
1 parent f3df821 commit ae1f563

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

.github/linters/.markdown-lint.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ MD007:
1313
indent: 2 # Unordered list indentation
1414
MD013:
1515
line_length: 808 # Line length
16-
MD024:
17-
siblings_only: true # Allow duplicate headings in different sections
16+
MD024: false # no-duplicate-heading, INPUTS and OUTPUTS _can_ be the same item
1817
MD026:
1918
punctuation: '.,;:!。,;:' # List of not allowed
2019
MD029: false # Ordered list item prefix

0 commit comments

Comments
 (0)