-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy path.rumdl.toml
More file actions
94 lines (78 loc) · 2.36 KB
/
Copy path.rumdl.toml
File metadata and controls
94 lines (78 loc) · 2.36 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# rumdl configuration file
# Inherit settings from another config file (relative to this file's directory)
# extends = "../base.rumdl.toml"
# Global configuration options
[global]
# List of rules to disable (uncomment and modify as needed)
disable = [
"MD004",
"MD005",
"MD007",
"MD009",
"MD010",
"MD012",
"MD013",
"MD022",
"MD024",
"MD025",
"MD026",
"MD031",
"MD032",
"MD033",
"MD034",
"MD041",
"MD042",
"MD046",
"MD051",
"MD056",
"MD059",
"MD064",
"MD076",
"MD077",
]
# List of rules to enable exclusively (replaces defaults; only these rules will run)
# enable = ["MD001", "MD003", "MD004"]
# Additional rules to enable on top of defaults (additive, does not replace)
# Use this to activate opt-in rules like MD060, MD063, MD072, MD073, MD074
# extend-enable = ["MD060", "MD063"]
# Additional rules to disable on top of the disable list (additive)
# extend-disable = ["MD041"]
# 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: standard (default), gfm, commonmark, mkdocs, mdx, pandoc, quarto, obsidian, kramdown, azure_devops, myst
# flavor = "mkdocs"
# 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 = 100 # Line length
# code-blocks = false # Exclude code blocks from line length check
# tables = false # Exclude tables from line length check
# headings = true # Include headings in line length check
# [MD044]
# names = ["rumdl", "Markdown", "GitHub"] # Proper names that should be capitalized correctly
# code-blocks = false # Check code blocks for proper names (default: false, skips code blocks)