File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1- <!-- markdownlint-disable-next-line first-line-heading -->
21# What is the change?
32
43<!-- Describe the intended changes. -->
Original file line number Diff line number Diff line change 11{
2+ "files.insertFinalNewline" : true ,
3+ "files.trimTrailingWhitespace" : true ,
24 "markdownlint.config" : {
35 "MD013" : false ,
46 "MD024" : { "siblings_only" : true },
57 "MD033" : false
68 },
9+ "cSpell.language" : " en-GB" ,
710 "cSpell.words" : [
811 " dateutil" ,
912 " endcall" ,
13+ " endfor" ,
1014 " endset" ,
1115 " fieldset" ,
1216 " gunicorn" ,
Original file line number Diff line number Diff line change @@ -68,7 +68,8 @@ function run-markdownlint-natively() {
6868 # shellcheck disable=SC2086
6969 markdownlint \
7070 $files \
71- --config " $PWD /scripts/config/markdownlint.yaml"
71+ --config " $PWD /scripts/config/markdownlint.yaml" \
72+ --ignore " $PWD /.github/PULL_REQUEST_TEMPLATE.md"
7273}
7374
7475# Run markdownlint in a Docker container.
@@ -86,7 +87,8 @@ function run-markdownlint-in-docker() {
8687 --volume " $PWD " :/workdir \
8788 " $image " \
8889 $files \
89- --config /workdir/scripts/config/markdownlint.yaml
90+ --config /workdir/scripts/config/markdownlint.yaml \
91+ --ignore /workdir/.github/PULL_REQUEST_TEMPLATE.md
9092}
9193
9294# ==============================================================================
You can’t perform that action at this time.
0 commit comments