Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 0 additions & 25 deletions .rumdl.toml

This file was deleted.

26 changes: 26 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"