Disable MD060 (table column alignment) and MD032 (list blank lines). Add language tags to bare fenced code blocks (MD040).
36 lines
652 B
YAML
36 lines
652 B
YAML
config:
|
|
# Allow long lines in tables and code blocks
|
|
MD013:
|
|
line_length: 200
|
|
tables: false
|
|
code_blocks: false
|
|
|
|
# Allow duplicate headings across files (common in howtos)
|
|
MD024:
|
|
siblings_only: true
|
|
|
|
# Allow trailing punctuation in headings (e.g. "~/.ssh/config")
|
|
MD026: false
|
|
|
|
# Allow inline HTML (rare but sometimes needed)
|
|
MD033: false
|
|
|
|
# Allow bare URLs in markdown
|
|
MD034: false
|
|
|
|
# Allow multiple blank lines
|
|
MD012: false
|
|
|
|
# Allow mixed table column alignment
|
|
MD060: false
|
|
|
|
# Allow lists without surrounding blank lines (tight prose)
|
|
MD032: false
|
|
|
|
globs:
|
|
- "**/*.md"
|
|
|
|
ignores:
|
|
- ".git"
|
|
- ".venv"
|