forked from matrix-org/matrix.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.rumdl.toml
More file actions
58 lines (50 loc) · 1.64 KB
/
Copy path.rumdl.toml
File metadata and controls
58 lines (50 loc) · 1.64 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
# 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", # Heading levels should only increment by one
"MD003", # Heading style should be consistent
"MD011", # Fix reversed link syntax
"MD022", # Add blank lines around headings
"MD030", # Add consistent spacing after list markers
"MD031", # Code blocks need blank lines around them
"MD032", # Separate lists with blank lines
"MD034", # URLs should be formatted as links
"MD038", # Remove extra spaces in code
"MD039", # Remove extra spaces in links
"MD042", # Avoid Empty Links
"MD056", # Keep table column count consistent
"MD058", # Add blank lines around tables
]
# 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",
# legacy content
"content/blog/2014",
"content/blog/2015",
"content/blog/2016",
"content/blog/2017",
"content/blog/2018",
]
# Respect .gitignore files when scanning directories (default: true)
respect-gitignore = true
# Markdown flavor/dialect (uncomment to enable)
# Options: mkdocs, gfm, commonmark
flavor = "commonmark" # https://www.getzola.org/documentation/getting-started/overview/
[MD032]
allow-lazy-continuation = false