From 27895a4a235a0e2387d0c8cbcf65a6ce5836dc59 Mon Sep 17 00:00:00 2001 From: Andrew-Clews Date: Thu, 12 Sep 2024 09:52:42 -0400 Subject: [PATCH] Updated to ignore MD032, MD031 and MD047 --- .github/workflows/markdown-lint.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/markdown-lint.yml b/.github/workflows/markdown-lint.yml index 25609e8..2646399 100644 --- a/.github/workflows/markdown-lint.yml +++ b/.github/workflows/markdown-lint.yml @@ -31,7 +31,12 @@ jobs: "ignore_code_blocks": true, // Ignores long lines within code blocks "ignore_tables": true // Ignores long lines within tables }, - "MD034": false // Disables the rule that flags bare URLs + "MD026": { + "punctuation": ".,;:!?" // Keeps rule for trailing punctuation, but can customize punctuation marks + }, + "MD032": false, // Ignores rule for blank lines around lists + "MD031": false, // Ignores rule for blank lines around fenced code blocks + "MD047": false // Ignores rule for a single trailing newline at the end of files }' > .markdownlint.json - name: Run markdownlint