File tree 7 files changed +14
-29
lines changed
docs/src/appendix/important
7 files changed +14
-29
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 187
187
},
188
188
// MD042/no-empty-links - No empty links
189
189
"MD042" : true ,
190
- // MD043/required-headings/required-headers - Required heading structure
190
+ // MD043/required-headings/required-headings - Required heading structure
191
191
"MD043" : {
192
192
// List of headings
193
193
"headings" : [
Original file line number Diff line number Diff line change 4
4
{
5
5
"label" : " CI - Recursive Markdown Lint - Check" ,
6
6
"type" : " shell" ,
7
- "command" : " earthly -P +markdown- check" ,
7
+ "command" : " earthly -P +check-markdown " ,
8
8
"problemMatcher" : {
9
- "owner" : " markdown- check" ,
9
+ "owner" : " check-markdown " ,
10
10
"pattern" : {
11
11
"regexp" : " (\\ S+):(\\ d+):(\\ d+)\\ s(.+)" ,
12
12
"file" : 1 ,
24
24
"type" : " shell" ,
25
25
"command" : " earthly -P +markdown-check-fix" ,
26
26
"problemMatcher" : {
27
- "owner" : " markdown-check" ,
27
+ "owner" : " markdown-check-fix " ,
28
28
"pattern" : {
29
29
"regexp" : " (\\ S+):(\\ d+):(\\ d+)\\ s(.+)" ,
30
30
"file" : 1 ,
Original file line number Diff line number Diff line change @@ -5,25 +5,24 @@ FROM debian:stable-slim
5
5
6
6
# cspell: words livedocs sitedocs
7
7
8
- markdown-check :
9
- # Check Markdown in this repo.
10
- LOCALLY
11
-
12
- DO github.com/input-output-hk/catalyst-ci/earthly/mdlint:v2.0.9+MDLINT_LOCALLY --src = $(echo ${PWD })
8
+ # check-markdown markdown check using catalyst-ci.
9
+ check-markdown :
10
+ DO github.com/input-output-hk/catalyst-ci/earthly/mdlint:v2.0.10+CHECK
13
11
12
+ # markdown-check-fix markdown check and fix using catalyst-ci.
14
13
markdown-check-fix :
15
- # Check Markdown in this repo.
16
14
LOCALLY
17
15
18
- DO github.com/input-output-hk/catalyst-ci/earthly/mdlint:v2.0.9 +MDLINT_LOCALLY --src = $(echo ${PWD }) --fix = --fix
16
+ DO github.com/input-output-hk/catalyst-ci/earthly/mdlint:v2.0.10 +MDLINT_LOCALLY --src = $(echo ${PWD }) --fix = --fix
19
17
20
18
# check-spelling Check spelling in this repo inside a container.
21
19
check-spelling :
22
20
DO github.com/input-output-hk/catalyst-ci/earthly/cspell:v2.0.10+CHECK
23
21
24
22
check :
25
23
BUILD +check-spelling
26
-
24
+ BUILD +check-markdown
25
+
27
26
repo-docs :
28
27
# Create artifacts of extra files we embed inside the documentation when its built.
29
28
FROM scratch
Original file line number Diff line number Diff line change @@ -4,5 +4,5 @@ title: Code of Conduct
4
4
---
5
5
6
6
<!-- markdownlint-disable first-line-h1 -->
7
- <!-- markdownlint-disable required-headers -->
7
+ <!-- markdownlint-disable required-headings -->
8
8
{{ include_file('includes/repo/CODE_OF_CONDUCT.md') }}
Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ icon: material/pen-plus
3
3
---
4
4
5
5
<!-- markdownlint-disable first-line-h1 -->
6
- <!-- markdownlint-disable required-headers -->
6
+ <!-- markdownlint-disable required-headings -->
7
7
{{ include_file('includes/repo/CONTRIBUTING.md') }}
Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ icon: material/security
3
3
---
4
4
5
5
<!-- markdownlint-disable first-line-h1 -->
6
- <!-- markdownlint-disable required-headers -->
6
+ <!-- markdownlint-disable required-headings -->
7
7
{{ include_file('includes/repo/SECURITY.md') }}
You can’t perform that action at this time.
0 commit comments