Skip to content

Commit 96bc39e

Browse files
committed
Add the rules to the markdownlint config file as comments
Enable MD011 no-reversed-links - Reversed link syntax
1 parent a528834 commit 96bc39e

File tree

1 file changed

+26
-1
lines changed

1 file changed

+26
-1
lines changed

.github/linters/.markdown-lint.yml

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,38 @@
1+
# https://github.com/DavidAnson/markdownlint#rules--aliases
2+
# markdownlint -c .github/linters/.markdown-lint.yml .
3+
4+
# MD001 heading-increment/header-increment - Heading levels should only increment by one level at a time
15
MD001: false
6+
7+
# MD003 heading-style/header-style - Heading style
28
MD003: false
9+
10+
# MD005 list-indent - Inconsistent indentation for list items at the same level
311
MD005: false
12+
13+
# MD007 ul-indent - Unordered list indentation
414
MD007: false
15+
16+
# MD010 no-hard-tabs - Hard tabs
517
MD010: false
6-
MD011: false
18+
19+
# MD013 line-length - Line length
720
MD013: false
21+
22+
# MD014 commands-show-output - Dollar signs used before commands without showing output
823
MD014: false
24+
25+
# MD024 no-duplicate-heading/no-duplicate-header - Multiple headings with the same content
926
MD024: false
27+
28+
# MD025 single-title/single-h1 - Multiple top-level headings in the same document
1029
MD025: false
30+
31+
# MD026 no-trailing-punctuation - Trailing punctuation in heading
1132
MD026: false
33+
34+
# MD040 fenced-code-language - Fenced code blocks should have a language specified
1235
MD040: false
36+
37+
# MD046 code-block-style - Code block style
1338
MD046: false

0 commit comments

Comments
 (0)