Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d5b74e0

Browse files
committedJun 9, 2023
refactor: removed markdownlint changes in this PR
1 parent 98fb326 commit d5b74e0

File tree

5 files changed

+5
-49
lines changed

5 files changed

+5
-49
lines changed
 

‎.github/workflows/markdown-lint.yml

-23
This file was deleted.

‎.markdownlint-cli2.jsonc

-11
This file was deleted.

‎.markdownlint.jsonc

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,10 @@
11
{
22
"default": true,
3-
"MD003": { "style": "atx" }, // https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md003---heading-style
4-
"MD004": { "style": "dash" }, // https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md004---unordered-list-style
5-
"MD007": { "indent": 4 }, // https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md007---unordered-list-indentation
6-
"MD009": false, // https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md009---trailing-spaces
7-
"MD010": false, // https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md010---hard-tabs
83
"MD013": false, // https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md013---line-length
94
"MD024": false, // https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md024---multiple-headings-with-the-same-content
105
"MD025": false, // https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md025---multiple-top-level-headings-in-the-same-document
116
"MD029": false, // https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md029---ordered-list-item-prefix
127
"MD033": false, // https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md033---inline-html
138
"MD036": false, // https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md036---emphasis-used-instead-of-a-heading
14-
"MD041": false, // https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md041---first-line-in-a-file-should-be-a-top-level-heading
15-
"MD049": { "style": "asterisk" }, // https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md049---emphasis-style-should-be-consistent
16-
"MD050": { "style": "asterisk" } // https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md050---strong-style-should-be-consistent
9+
"MD041": false // https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md041---first-line-in-a-file-should-be-a-top-level-heading
1710
}

‎.markdownlintignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
vendor
2+
e2e/vendor
3+
docs/node_modules

‎Makefile

+1-7
Original file line numberDiff line numberDiff line change
@@ -282,13 +282,7 @@ format:
282282
.PHONY: format
283283

284284
docs-lint:
285-
markdownlint-cli2 "**.md"
286-
287-
docs-lint-fix:
288-
markdownlint-cli2-fix "**.md"
289-
290-
docs-link-check:
291-
find . -name \*.md -print0 | xargs -0 -n1 markdown-link-check --config ./.github/workflows/link-check-config.json
285+
markdownlint . --fix
292286

293287
.PHONY: lint lint-fix lint-fix-changed docs-lint docs-lint-changed
294288

0 commit comments

Comments
 (0)
Please sign in to comment.