Skip to content

Commit 8d3bc95

Browse files
ironicbadgerclaude
andcommitted
Fix markdownlint configuration duplicate keys
Remove duplicate rule definitions for MD033 and MD041 that were causing YAML parsing errors. Reorganized rules in numerical order for better maintainability. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 2405bff commit 8d3bc95

File tree

1 file changed

+27
-33
lines changed

1 file changed

+27
-33
lines changed

.markdownlint.yml

Lines changed: 27 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,23 @@ MD013:
1111
tables: false
1212
code_blocks: false
1313

14-
# Inline HTML - disabled as MkDocs Material uses HTML
14+
# Dollar signs used before commands without showing output
15+
MD014: false
16+
17+
# Duplicate heading - disabled for docs that may repeat headings
18+
MD024: false
19+
20+
# Multiple headings with the same content - disabled for consistency
21+
MD025: false
22+
23+
# Trailing punctuation in heading
24+
MD026:
25+
punctuation: ".,;:!"
26+
27+
# Lists should be surrounded by blank lines
28+
MD032: true
29+
30+
# Inline HTML - disabled as MkDocs Material uses HTML extensively
1531
MD033:
1632
allowed_elements:
1733
- div
@@ -28,21 +44,18 @@ MD033:
2844
- figure
2945
- figcaption
3046

31-
# First line in file should be a top-level heading
32-
MD041: false
33-
34-
# Duplicate heading - disabled for docs that may repeat headings
35-
MD024: false
47+
# No bare URLs - disabled as some docs use them intentionally
48+
MD034: false
3649

37-
# Multiple headings with the same content - disabled for consistency
38-
MD025: false
50+
# Horizontal rules style
51+
MD035:
52+
style: "---"
3953

40-
# Trailing punctuation in heading
41-
MD026:
42-
punctuation: ".,;:!"
54+
# Require code fence language - disabled as not always needed
55+
MD040: false
4356

44-
# Lists should be surrounded by blank lines
45-
MD032: true
57+
# First line in file should be a top-level heading - disabled for included files
58+
MD041: false
4659

4760
# Code block style
4861
MD046:
@@ -66,23 +79,4 @@ MD055:
6679
style: leading_and_trailing
6780

6881
# Table row style
69-
MD056: true
70-
71-
# Dollar signs used before commands without showing output
72-
MD014: false
73-
74-
# No bare URLs - disabled as some docs use them intentionally
75-
MD034: false
76-
77-
# Horizontal rules style
78-
MD035:
79-
style: "---"
80-
81-
# No inline HTML - disabled for MkDocs Material
82-
MD033: false
83-
84-
# First line should be a heading - disabled for included files
85-
MD041: false
86-
87-
# Require code fence language - disabled as not always needed
88-
MD040: false
82+
MD056: true

0 commit comments

Comments
 (0)