22 lines
453 B
YAML
22 lines
453 B
YAML
# markdownlint-cli2 configuration
|
|
# https://github.com/DavidAnson/markdownlint-cli2
|
|
|
|
globs:
|
|
- "**/*.md"
|
|
|
|
ignores:
|
|
- "vendor/**"
|
|
- "node_modules/**"
|
|
|
|
config:
|
|
# Allow long lines — documentation often has URLs and tables
|
|
MD013: false
|
|
# Allow duplicate headings in different sections
|
|
MD024:
|
|
siblings_only: true
|
|
# Allow trailing punctuation in headings
|
|
MD026:
|
|
punctuation: ".,;:!"
|
|
# Allow inline HTML when needed
|
|
MD033: false
|