From 31d8aa70ac13569f230c6f5210b8090588f82efd Mon Sep 17 00:00:00 2001 From: Charles Whittington Date: Mon, 19 Jan 2026 00:31:26 -0500 Subject: [PATCH] Move rumdl config to pyproject.toml --- .rumdl.toml | 25 ------------------------- pyproject.toml | 26 ++++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 25 deletions(-) delete mode 100644 .rumdl.toml diff --git a/.rumdl.toml b/.rumdl.toml deleted file mode 100644 index 439c75c..0000000 --- a/.rumdl.toml +++ /dev/null @@ -1,25 +0,0 @@ -[global] -flavor = "mkdocs" -include = ["**/*.md"] -exclude = ["CODE_OF_CONDUCT.md"] -respect-gitignore = true - -# Disable rules: -# MD013: Enforces line length -# MD014: Forces commands in codeblocks to show output -disable = ["MD014",] - -[per-file-ignores] -"docs/en/how-to/style-guide.md" = ["MD041"] -"docs/en/SUMMARY.md" = ["MD041"] - -[MD026] # Remove punctuation at the end of headings -punctuation = ",;:" - -[MD033] # No inline HTML -allowed_elements = ["nospell",] # pyspelling inline disable tag - -[MD013] # Line length -line_length = 999999 -reflow = true -reflow_mode = "normalize" diff --git a/pyproject.toml b/pyproject.toml index 67b06c2..537d61d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,3 +25,29 @@ translate = [ docs = [ "beeware-docs-tools @ git+https://github.com/beeware/beeware-docs-tools", ] + +[tool.rumdl] +flavor = "mkdocs" +include = ["**/*.md"] +exclude = ["CODE_OF_CONDUCT.md"] +respect-gitignore = true + +# Disable rules: +# MD013: Enforces line length +# MD014: Forces commands in codeblocks to show output +disable = ["MD014",] + +[tool.rumdl.per-file-ignores] +"docs/en/how-to/style-guide.md" = ["MD041"] +"docs/en/SUMMARY.md" = ["MD041"] + +[tool.rumdl.MD026] # Remove punctuation at the end of headings +punctuation = ",;:" + +[tool.rumdl.MD033] # No inline HTML +allowed_elements = ["nospell",] # pyspelling inline disable tag + +[tool.rumdl.MD013] # Line length +line_length = 999999 +reflow = true +reflow_mode = "normalize"