|
| 1 | +# rumdl configuration file |
| 2 | + |
| 3 | +# Global configuration options |
| 4 | +[global] |
| 5 | +# List of rules to disable (uncomment and modify as needed) |
| 6 | +disable = ["MD013", "MD033"] |
| 7 | + |
| 8 | +# List of rules to enable exclusively (if provided, only these rules will run) |
| 9 | +# enable = ["MD001", "MD003", "MD004"] |
| 10 | + |
| 11 | +# List of file/directory patterns to include for linting (if provided, only these will be linted) |
| 12 | +# include = [ |
| 13 | +# "docs/*.md", |
| 14 | +# "src/**/*.md", |
| 15 | +# "README.md" |
| 16 | +# ] |
| 17 | + |
| 18 | +# List of file/directory patterns to exclude from linting |
| 19 | +exclude = [ |
| 20 | + # Common directories to exclude |
| 21 | + ".git", |
| 22 | + ".github", |
| 23 | + "node_modules", |
| 24 | + "vendor", |
| 25 | + "dist", |
| 26 | + "build", |
| 27 | + |
| 28 | + # Specific files or patterns |
| 29 | + "CHANGELOG.md", |
| 30 | + "LICENSE.md", |
| 31 | +] |
| 32 | + |
| 33 | +# Respect .gitignore files when scanning directories (default: true) |
| 34 | +respect-gitignore = true |
| 35 | + |
| 36 | +# Markdown flavor/dialect (uncomment to enable) |
| 37 | +# Options: standard (default), gfm, commonmark, mkdocs, mdx, quarto |
| 38 | +# flavor = "mkdocs" |
| 39 | + |
| 40 | +# Rule-specific configurations (uncomment and modify as needed) |
| 41 | + |
| 42 | +# [MD003] |
| 43 | +# style = "atx" # Heading style (atx, atx_closed, setext) |
| 44 | + |
| 45 | +# [MD004] |
| 46 | +# style = "asterisk" # Unordered list style (asterisk, plus, dash, consistent) |
| 47 | + |
| 48 | +# [MD007] |
| 49 | +# indent = 4 # Unordered list indentation |
| 50 | + |
| 51 | +# [MD013] |
| 52 | +# line-length = 100 # Line length |
| 53 | +# code-blocks = false # Exclude code blocks from line length check |
| 54 | +# tables = false # Exclude tables from line length check |
| 55 | +# headings = true # Include headings in line length check |
| 56 | + |
| 57 | +# [MD044] |
| 58 | +# names = ["rumdl", "Markdown", "GitHub"] # Proper names that should be capitalized correctly |
| 59 | +# code-blocks = false # Check code blocks for proper names (default: false, skips code blocks) |
0 commit comments