Skip to content

Commit bcdcb2a

Browse files
sir-sigurdclaude
andcommitted
Use rule-name aliases in markdownlint config
Reference rules by their readable names (line-length, no-emphasis-as-heading, table-column-style, no-duplicate-heading) instead of MD0xx IDs. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 8b07c2e commit bcdcb2a

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.markdownlint-cli2.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
# for the full rule reference.
33
config:
44
# Line length: prose, tables, and long links routinely exceed any fixed width.
5-
MD013: false
5+
line-length: false
66
# Bold-as-heading: the docs deliberately use bold text as inline labels.
7-
MD036: false
7+
no-emphasis-as-heading: false
88
# Table pipe spacing: cosmetic; tables render correctly either way.
9-
MD060: false
9+
table-column-style: false
1010
# Duplicate headings: the CHANGELOG repeats Added/Changed/Fixed per release,
1111
# which is the Keep a Changelog convention. Only flag duplicates under the
1212
# same parent heading.
13-
MD024:
13+
no-duplicate-heading:
1414
siblings_only: true
1515
# Lint top-level docs only; spec/ holds working notes and is intentionally
1616
# excluded. A non-recursive glob naturally skips spec/ and .github/. This

0 commit comments

Comments
 (0)