Last active
June 1, 2026 20:41
-
-
Save lucaspar/eb3aff2cff7272f9a031205ea392fdcf to your computer and use it in GitHub Desktop.
`rumdl` config for new projects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Based on: | |
| # https://github.com/rvben/rumdl/blob/main/rumdl.toml.example | |
| # Global configuration options | |
| [global] | |
| exclude = [ | |
| # e.g. exclude any obsidian- or mkdocs- style files | |
| ] | |
| include = ["**/*.md", "**/*.mdc", "**/*.gfm"] | |
| # Globally disable specific rules based on .markdownlint.json | |
| disable = [ | |
| "MD013", # line length | |
| "MD024", # no duplicate heading | |
| "MD025", # multiple top-level headings in the same document | |
| "MD033", # no inline HTML | |
| "MD077", # list continuation content indentation (too noisy) | |
| ] | |
| respect-gitignore = true | |
| [MD007] | |
| # https://rumdl.dev/md007/ | |
| # Unordered list indentation | |
| indent = 4 | |
| start-indented = false | |
| # style = "fixed" # indentation style: "text-aligned" (default) | "fixed" | |
| [MD073] | |
| # https://rumdl.dev/md073/ | |
| # ToC validation | |
| enabled = true # whether to validate the TOC (default: false) | |
| enforce-order = true # whether TOC order must match document order (default: true) | |
| max-level = 4 # max heading level to include (default: 6) | |
| min-level = 2 # min heading level to include (default: 4) | |
| # indent = 4 # spaces per indentation level (default: from MD007, or 2) | |
| [MD046] | |
| # https://rumdl.dev/md046 | |
| style = "fenced" # "consistent" | "fenced" | "indented" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment