Commit 7fecfcb 1 parent ba92a85 commit 7fecfcb Copy full SHA for 7fecfcb
File tree 2 files changed +2
-0
lines changed
2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ We are using the [markdownlint](https://github.com/DavidAnson/markdownlint) fram
18
18
| [ MD023] ( https://github.com/DavidAnson/markdownlint/blob/main/doc/md023.md ) | Headings must start at the beginning of the line. | error |
19
19
| [ MD024] ( https://github.com/DavidAnson/markdownlint/blob/main/doc/md024.md ) | Disallow headings with the same content. | error |
20
20
| [ MD027] ( https://github.com/DavidAnson/markdownlint/blob/main/doc/md027.md ) | Catches multiple spaces after blockquote symbol. | warning |
21
+ | [ MD030] ( https://github.com/DavidAnson/markdownlint/blob/main/doc/md030.md ) | Only allow one space after list markers. | error |
21
22
| [ MD011] ( https://github.com/DavidAnson/markdownlint/blob/main/doc/md011.md ) | Make sure that link syntax is not reversed. | error |
22
23
| [ MD111] ( ./linting-rules/image-alt-text-length.js ) | Images alternate text should be between 40-150 characters. | warning |
23
24
| [ MD112] ( ./linting-rules/image-alt-text-end-punctuation.js ) | Images alternate text should end with a punctuation. | error |
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ async function main() {
39
39
MD023 : true ,
40
40
MD024 : true ,
41
41
MD027 : true ,
42
+ MD030 : true ,
42
43
MD111 : true ,
43
44
MD112 : true ,
44
45
MD113 : true ,
You can’t perform that action at this time.
0 commit comments