Skip to content

Commit a44d784

Browse files
committed
feat: 🔧 add rumdl config file
1 parent 0904d58 commit a44d784

2 files changed

Lines changed: 64 additions & 0 deletions

File tree

.rumdl.toml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[global]
2+
# 72 to match what we have currently been using
3+
line_length = 72
4+
flavor = "quarto"
5+
exclude = [
6+
# Common directories to exclude
7+
".github",
8+
# This is auto-generated from the qmd version
9+
"**/README.md",
10+
# This has it's own structure
11+
"**/LICENSE.md"
12+
]
13+
14+
# List style: `-`
15+
[MD004]
16+
style = "dash"
17+
18+
# Wrap list items
19+
[MD032]
20+
allow-lazy-continuation = false
21+
22+
# Reflow text
23+
[MD013]
24+
reflow = true
25+
reflow-mode = "normalize"
26+
# Exclude code blocks from line length check
27+
# code-blocks = false
28+
29+
# Fix tables and their separator row
30+
[MD060]
31+
enabled = true
32+
style = "aligned-no-space"

template/.rumdl.toml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[global]
2+
# 72 to match what we have currently been using
3+
line_length = 72
4+
flavor = "quarto"
5+
exclude = [
6+
# Common directories to exclude
7+
".github",
8+
# This is auto-generated from the qmd version
9+
"**/README.md",
10+
# This has it's own structure
11+
"**/LICENSE.md"
12+
]
13+
14+
# List style: `-`
15+
[MD004]
16+
style = "dash"
17+
18+
# Wrap list items
19+
[MD032]
20+
allow-lazy-continuation = false
21+
22+
# Reflow text
23+
[MD013]
24+
reflow = true
25+
reflow-mode = "normalize"
26+
# Exclude code blocks from line length check
27+
# code-blocks = false
28+
29+
# Fix tables and their separator row
30+
[MD060]
31+
enabled = true
32+
style = "aligned-no-space"

0 commit comments

Comments
 (0)