-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrumdl.toml
More file actions
50 lines (38 loc) · 1.39 KB
/
Copy pathrumdl.toml
File metadata and controls
50 lines (38 loc) · 1.39 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
# yaml-language-server: $schema=https://raw.githubusercontent.com/rvben/rumdl/main/rumdl.schema.json
# rumdl respects .gitignore by default
[global]
# List of rules to disable (uncomment and modify as needed)
disable = ["MD013", "MD041", "MD031", "MD009"]
# List of rules to enable exclusively (if provided, only these rules will run)
# enable = ["MD001", "MD003", "MD004"]
# List of file/directory patterns to exclude from linting
exclude = [
".git",
".github",
"node_modules",
"vendor",
"dist",
"build",
"target",
"CHANGELOG.md",
"AGENTS.md",
]
# Markdown flavor/dialect
# TODO: Switch to "gfm" when rumdl implements it
flavor = "standard"
cache-dir = ".cache/rumdl"
# 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)