Add the rules to the markdownlint config file as comments

Enable MD011 no-reversed-links - Reversed link syntax
This commit is contained in:
John Bampton
2021-04-30 02:29:36 +10:00
parent a528834df7
commit 96bc39e527
+26 -1
View File
@@ -1,13 +1,38 @@
# https://github.com/DavidAnson/markdownlint#rules--aliases
# markdownlint -c .github/linters/.markdown-lint.yml .
# MD001 heading-increment/header-increment - Heading levels should only increment by one level at a time
MD001: false
# MD003 heading-style/header-style - Heading style
MD003: false
# MD005 list-indent - Inconsistent indentation for list items at the same level
MD005: false
# MD007 ul-indent - Unordered list indentation
MD007: false
# MD010 no-hard-tabs - Hard tabs
MD010: false
MD011: false
# MD013 line-length - Line length
MD013: false
# MD014 commands-show-output - Dollar signs used before commands without showing output
MD014: false
# MD024 no-duplicate-heading/no-duplicate-header - Multiple headings with the same content
MD024: false
# MD025 single-title/single-h1 - Multiple top-level headings in the same document
MD025: false
# MD026 no-trailing-punctuation - Trailing punctuation in heading
MD026: false
# MD040 fenced-code-language - Fenced code blocks should have a language specified
MD040: false
# MD046 code-block-style - Code block style
MD046: false