From 36fe349b70e502f0a5d64c607e98e255f03d2590 Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Sun, 19 Oct 2025 23:23:41 +0000 Subject: [PATCH] chore(ci): ignore .github/pull_request_template.md with markdown linter --- .markdownlint-cli2.jsonc | 9 +++++++++ .markdownlint.json | 3 --- 2 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 .markdownlint-cli2.jsonc delete mode 100644 .markdownlint.json diff --git a/.markdownlint-cli2.jsonc b/.markdownlint-cli2.jsonc new file mode 100644 index 00000000..27369212 --- /dev/null +++ b/.markdownlint-cli2.jsonc @@ -0,0 +1,9 @@ +{ + "config": { + "default": true, + "MD013": false, + }, + "ignores": [ + ".github/pull_request_template.md" + ] +} \ No newline at end of file diff --git a/.markdownlint.json b/.markdownlint.json deleted file mode 100644 index 73cb9808..00000000 --- a/.markdownlint.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "MD013": false -} \ No newline at end of file