diff --git a/.rumdl.toml b/.rumdl.toml deleted file mode 100644 index f8353c18a3370011b57e39506a342d6445641300..0000000000000000000000000000000000000000 --- a/.rumdl.toml +++ /dev/null @@ -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