matrix.org/.rumdl.toml
Kim Brose 9a87ff9c00
enable linting MD031 blank lines around code fences (#3133)
Signed-off-by: HarHarLinks <2803622+HarHarLinks@users.noreply.github.com>
2026-01-05 20:09:00 +00:00

42 lines
1.1 KiB
TOML

# rumdl configuration file
# Global configuration options
[global]
# List of rules to disable (uncomment and modify as needed)
# disable = ["MD013", "MD033"]
# List of rules to enable exclusively (if provided, only these rules will run)
enable = ["MD001", "MD003", "MD011", "MD030", "MD031", "MD034", "MD039"]
# List of file/directory patterns to include for linting (if provided, only these will be linted)
# include = [
# "docs/*.md",
# "src/**/*.md",
# "README.md"
# ]
# List of file/directory patterns to exclude from linting
exclude = [
# Common directories to exclude
".git",
".github",
"node_modules",
"vendor",
"dist",
"build",
# legacy content
"content/blog/2014",
"content/blog/2015",
"content/blog/2016",
"content/blog/2017",
"content/blog/2018",
]
# Respect .gitignore files when scanning directories (default: true)
respect-gitignore = true
# Markdown flavor/dialect (uncomment to enable)
# Options: mkdocs, gfm, commonmark
flavor = "commonmark" # https://www.getzola.org/documentation/getting-started/overview/