-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy path.rumdl.toml
More file actions
55 lines (42 loc) · 1.31 KB
/
.rumdl.toml
File metadata and controls
55 lines (42 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# rumdl configuration file
# Global configuration options
[global]
# List of rules to disable (uncomment and modify as needed)
disable = ["MD013"]
# 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
# Rule-specific configurations (uncomment and modify as needed)
# [MD003]
# style = "atx" # Heading style (atx, atx_closed, setext)
# [MD004]
# style = "asterisk" # Unordered list style (asterisk, plus, dash, consistent)
# [MD007]
# indent = 4 # Unordered list indentation
[MD013]
line-length = 0
reflow = true
reflow-mode = "sentence-per-line"
# [MD044]
# names = ["rumdl", "Markdown", "GitHub"] # Proper names that should be capitalized correctly
# code_blocks_excluded = true # Exclude code blocks from proper name check