File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-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 @@ -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