From 5b7f16a61c148710da47b9ac2fa7a0ff13f2969a Mon Sep 17 00:00:00 2001 From: Andrew-Clews Date: Fri, 13 Sep 2024 11:30:39 -0400 Subject: [PATCH] updated linter to ignore MD037 and MD026 increased line limit of MD013 to 2K --- .github/workflows/markdown-lint.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/markdown-lint.yml b/.github/workflows/markdown-lint.yml index 5e85dfd..6d14304 100644 --- a/.github/workflows/markdown-lint.yml +++ b/.github/workflows/markdown-lint.yml @@ -26,18 +26,17 @@ jobs: run: | echo '{ "MD013": { - "line_length": 600, // Sets a high line length limit (600 characters) + "line_length": 2000, // Sets a high line length limit (600 characters) "ignore_urls": true, // Ignores long lines that contain URLs "ignore_code_blocks": true, // Ignores long lines within code blocks "ignore_tables": true // Ignores long lines within tables }, - "MD026": { - "punctuation": ".,;:!?" // Keeps rule for trailing punctuation, but can customize punctuation marks - }, - "MD034": false, // Disables the rule that flags bare URLs - "MD032": false, // Ignores rule for blank lines around lists + "MD026": false, // Ignores rule for trailing punctuation in headings "MD031": false, // Ignores rule for blank lines around fenced code blocks - "MD040": false, // Ignores rule for fenced code blocks without a language specified + "MD032": false, // Ignores rule for blank lines around lists + "MD034": false, // Disables the rule that flags bare URLs + "MD037": false, // Ignores rule for emphasis used instead of a heading + "MD040": false, // Ignores rule for fenced code blocks without a language specified "MD047": false // Ignores rule for a single trailing newline at the end of files }' > .markdownlint.json