File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2323 with :
2424 version : " 0.15.18"
2525 args : " format --check"
26+
27+ markdownlint :
28+ runs-on : ubuntu-latest
29+ steps :
30+ - uses : actions/checkout@v4
31+
32+ - name : markdownlint
33+ uses : DavidAnson/markdownlint-cli2-action@v20
34+ with :
35+ globs : " **/*.md"
Original file line number Diff line number Diff line change 1+ # markdownlint-cli2 configuration — see https://github.com/DavidAnson/markdownlint
2+ config :
3+ MD013 : false # line length (tables, code and long prose)
4+ MD033 : false # inline HTML (badges, <img>)
5+ MD041 : false # first line need not be a top-level heading (badges)
6+ MD024 :
7+ siblings_only : true # repeated headings OK across different sections
8+ MD046 : false # allow both indented and fenced code blocks
9+ MD060 : false # don't enforce table pipe spacing style
10+ globs :
11+ - " **/*.md"
12+ ignores :
13+ - " site"
14+ - " .pixi"
15+ - " PUBLIC"
16+ - " **/node_modules"
You can’t perform that action at this time.
0 commit comments