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