Skip to content

Commit

Permalink
updated linter to ignore MD037 and MD026 increased line limit of MD01…
Browse files Browse the repository at this point in the history
…3 to 2K
  • Loading branch information
Andrew-Clews committed Sep 13, 2024
1 parent 29b8021 commit 5b7f16a
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5b7f16a

Please sign in to comment.