docs: remove rumdl

Amolith created

A bit too buggy to use yet

Change summary

.rumdl.toml | 52 ----------------------------------------------------
1 file changed, 52 deletions(-)

Detailed changes

.rumdl.toml 🔗

@@ -1,52 +0,0 @@
-# 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", "MD004"]
-
-# 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",
-
-    # Specific files or patterns
-    "CHANGELOG.md",
-    "LICENSE.md",
-]
-
-# Respect .gitignore files when scanning directories (default: true)
-respect_gitignore = true
-
-# Markdown flavor/dialect (uncomment to enable)
-# Options: mkdocs, gfm, commonmark
-flavor = "commonmark"
-
-[MD003]
-style = "atx"  # Heading style (atx, atx_closed, setext)
-
-[MD004]
-style = "dash"  # Unordered list style (asterisk, plus, dash, consistent)
-
-[MD007]
-indent = 2  # Unordered list indentation
-
-[MD013]
-line_length = 80  # Line length
-code_blocks = false  # Exclude code blocks from line length check
-reflow = true