Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 15 additions & 6 deletions .markdownlint-cli2.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
ignores:
- ".claude/**"
- "node_modules/**"

config:
MD013: false # Line length β€” many existing docs exceed 200 chars; fix incrementally
MD024: false # Duplicate headings β€” AGENTS.md has intentional repeated section headers
MD032: false # Blanks around lists β€” many existing docs use compact list formatting
MD033: false # Inline HTML β€” used in standards docs for tables/details
MD034: false # Bare URLs β€” AGENTS.md uses bare URLs for references
MD041: true # First line must be a top-level heading
MD013:
line_length: 200
tables: false # Tables often have long rows β€” exclude
code_blocks: false # Code blocks need exact formatting β€” exclude
MD024:
siblings_only: true # Allow duplicate headings in different sections
MD032: true # Blanks around lists
MD033: false # Inline HTML β€” used in standards docs
MD034: true # No bare URLs
MD041: true # First line must be a top-level heading
MD060: false # Table column style β€” too strict for compact tables
Loading
Loading