Files
pinpox 869f4f7dbe treefmt/markdown: enable rumdl
This will enforce consistent formatting of markdown files. In particular
this catches missing code block syntax specifications, which render
poorly.
2026-03-23 15:28:32 +01:00

27 lines
794 B
TOML

# rumdl configuration file
[global]
disable = [
"MD003", # Heading style — false positives on mkdocs ::: admonition closers
"MD013", # Line length — too noisy for prose
"MD014", # Dollar signs in commands — common convention
"MD026", # Trailing punctuation in heading — false positives on mkdocs ::: admonition closers
"MD033", # Inline HTML — sometimes needed
"MD036", # Emphasis as heading — can be intentional
"MD041", # First line must be heading — not always applicable
]
exclude = [
".git",
"node_modules",
"pkgs/clan-cli/clan_lib/runtime-deps/nixpkgs",
"pkgs/clan-site",
"CHANGELOG.md",
"LICENSE.md",
]
respect-gitignore = true
# Use mkdocs flavor since the docs use mkdocs-style admonitions
flavor = "mkdocs"