Skip to content

Commit 541227c

Browse files
committed
Remove extraneous note from PR template
1 parent 0e3bbb7 commit 541227c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
<!-- markdownlint-disable-next-line first-line-heading -->
21
# What is the change?
32

43
<!-- Describe the intended changes. -->

scripts/githooks/check-markdown-format.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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
# ==============================================================================

0 commit comments

Comments
 (0)