diff options
| author | John Bampton <[email protected]> | 2021-04-30 02:29:36 +1000 |
|---|---|---|
| committer | John Bampton <[email protected]> | 2021-06-17 09:46:52 +1000 |
| commit | 96bc39e52743899bdac5693c1e8fef41a333c423 (patch) | |
| tree | 8949e876c359dee84752794b3b11c246bcccf28a /.github | |
| parent | a528834df7a0baf16b7c505ed4c0b7b1b0347f8e (diff) | |
| download | mruby-96bc39e52743899bdac5693c1e8fef41a333c423.tar.gz mruby-96bc39e52743899bdac5693c1e8fef41a333c423.zip | |
Add the rules to the markdownlint config file as comments
Enable MD011 no-reversed-links - Reversed link syntax
Diffstat (limited to '.github')
| -rw-r--r-- | .github/linters/.markdown-lint.yml | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/.github/linters/.markdown-lint.yml b/.github/linters/.markdown-lint.yml index 671046203..bc7b9146e 100644 --- a/.github/linters/.markdown-lint.yml +++ b/.github/linters/.markdown-lint.yml @@ -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 |
