diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-06-18 10:55:04 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-06-18 10:55:04 +0900 |
| commit | e1637e716a995c21d80b21a4f8103af3d8f5a837 (patch) | |
| tree | 52cfa57d1f6dde195043f8f7b83404c6a43ff91f /.github | |
| parent | e812b1ccb303be632d2e341907f8c0173ca54000 (diff) | |
| parent | 96bc39e52743899bdac5693c1e8fef41a333c423 (diff) | |
| download | mruby-e1637e716a995c21d80b21a4f8103af3d8f5a837.tar.gz mruby-e1637e716a995c21d80b21a4f8103af3d8f5a837.zip | |
Merge pull request #5434 from jbampton/add-markdownlint-rules-as-comments
Add the rules to the markdownlint config file as comments
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 |
