Skip to content

Commit a266931

Browse files
committed
ci: update rumdl config and ci
1 parent b96c8d5 commit a266931

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches: [main]
66
paths:
77
- "**/*.md"
8-
- ".github/workflows/markdown-linting.yml"
8+
- ".github/workflows/rumdl-lint.yml"
99
- ".rumdl.toml"
1010
pull_request:
1111
paths:

.rumdl.toml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,14 @@ disable = [
66
"MD032", # blanks-around-lists: space waster
77
]
88

9+
# PENDING https://github.com/rvben/rumdl/issues/208
10+
exclude = [".github/pull_request_template.md"]
11+
912
# ------------------------------------------------------------------------------
1013

14+
[MD004] # ul-style
15+
style = "dash" # GitHub default & quicker to type
16+
1117
[MD007] # ul-indent
1218
indent = 4 # consistent with .editorconfig
1319

@@ -22,7 +28,11 @@ lines-below = 0 # rule of proximity
2228
style = "ordered"
2329

2430
[MD033] # inline-html
25-
allowed-elements = ["a", "img", "kbd"] # badges and `kbd` for hotkey instructions
31+
allowed-elements = [
32+
"a",
33+
"img",
34+
"kbd"
35+
] # badges and `kbd` for hotkey instructions
2636

2737
[MD049] # emphasis style
2838
style = "asterisk" # better than underscore, since it's not considered a word-char

0 commit comments

Comments
 (0)