Skip to content

Commit 72fa20a

Browse files
🪲 [Fix]: Fix linter settings and docs (#50)
## Description This pull request makes minor adjustments to the Markdown linter configuration. The main change is the disabling of the duplicate heading check to allow repeated headings like "INPUTS" and "OUTPUTS", and a small formatting update to the punctuation rule. - Markdown linting configuration updates: * Disabled the `MD024` rule to permit duplicate headings, such as "INPUTS" and "OUTPUTS" (`.github/linters/.markdown-lint.yml`). * Changed the punctuation list for `MD026` to use single quotes for consistency (`.github/linters/.markdown-lint.yml`).
1 parent 27ce734 commit 72fa20a

1 file changed

Lines changed: 9 additions & 8 deletions

File tree

‎.github/linters/.markdown-lint.yml‎

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,19 @@
88
###############
99
# Rules by id #
1010
###############
11-
MD004: false # Unordered list style
11+
MD004: false # Unordered list style
1212
MD007:
13-
indent: 2 # Unordered list indentation
13+
indent: 2 # Unordered list indentation
1414
MD013:
15-
line_length: 808 # Line length
15+
line_length: 808 # Line length
16+
MD024: false # no-duplicate-heading, INPUTS and OUTPUTS _can_ be the same item
1617
MD026:
17-
punctuation: ".,;:!。,;:" # List of not allowed
18-
MD029: false # Ordered list item prefix
19-
MD033: false # Allow inline HTML
20-
MD036: false # Emphasis used instead of a heading
18+
punctuation: '.,;:!。,;:' # List of not allowed
19+
MD029: false # Ordered list item prefix
20+
MD033: false # Allow inline HTML
21+
MD036: false # Emphasis used instead of a heading
2122

2223
#################
2324
# Rules by tags #
2425
#################
25-
blank_lines: false # Error on blank lines
26+
blank_lines: false # Error on blank lines

0 commit comments

Comments
 (0)