Skip to content

Commit 3822562

Browse files
Back off markdownlint configuration (ossf#95)
Modify the markdownlint configuration to skip a few more checks, and also make the configuration file easier to read. Signed-off-by: David A. Wheeler <[email protected]> Signed-off-by: David A. Wheeler <[email protected]>
1 parent 5955fce commit 3822562

File tree

1 file changed

+13
-16
lines changed

1 file changed

+13
-16
lines changed

.github/linters/.markdown-lint.yml

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
# Default state for all rules
22
default: true
3-
# "~MD013/line-length"
4-
MD013: false
5-
# "~MD025/single-title/single-h1"
6-
MD025: false
7-
# "~MD036/no-emphasis-as-heading"
8-
MD036: false
9-
# "~MD033/no-inline-html"
10-
MD033: false
11-
# "~MD049/emphasis-style"
12-
MD049: false
13-
# "~MD012/no-multiple-blank"
14-
MD012: false
15-
# "~MD024/no-duplicate-heading/no-duplicate-header"
16-
MD024: false
17-
# "~MD001/heading-increment/header-increment"
18-
MD001: false
3+
MD013: false # MD013/line-length
4+
MD025: false # MD025/single-title/single-h1
5+
MD028: false # MD028/no-blanks-blockquote
6+
MD036: false # MD036/no-emphasis-as-heading
7+
MD033: false # MD033/no-inline-html
8+
MD049: false # MD049/emphasis-style
9+
MD012: false # MD012/no-multiple-blank
10+
MD024: false # MD024/no-duplicate-heading/no-duplicate-header
11+
MD001: false # MD001/heading-increment/header-increment
12+
# Fix these when you can:
13+
MD042: false # MD042/no-empty-links
14+
MD051: false # MD051/link-fragments Link fragments should be valid
15+

0 commit comments

Comments
 (0)