From 81e5f62b74db6f416f5011ef5ae2b6ada943ee20 Mon Sep 17 00:00:00 2001 From: Jan Hohenheim Date: Thu, 11 Apr 2024 15:51:54 +0200 Subject: [PATCH 1/2] Relax lints further --- .markdownlint.json | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.markdownlint.json b/.markdownlint.json index 7aeeca0ed..27532b80d 100644 --- a/.markdownlint.json +++ b/.markdownlint.json @@ -3,8 +3,12 @@ "line_length": 160, "code_blocks": false }, - "no-trailing-punctuation": { - "punctuation": ".,;:。,;:" - } -} - + "no-trailing-punctuation": false, + "blanks-around-lists": false, + "hr-style": false, + "no-trailing-spaces": false, + "no-multiple-blanks": false, + "strong-style": false, + "emphasis-style": false, + "no-hard-tabs": false +} \ No newline at end of file From dbce73daedad7095fd78d2706b6f6e95d020f32b Mon Sep 17 00:00:00 2001 From: Jan Hohenheim Date: Thu, 11 Apr 2024 15:56:19 +0200 Subject: [PATCH 2/2] Reorder lints --- .markdownlint.json | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.markdownlint.json b/.markdownlint.json index 27532b80d..f0b463e0e 100644 --- a/.markdownlint.json +++ b/.markdownlint.json @@ -3,12 +3,13 @@ "line_length": 160, "code_blocks": false }, - "no-trailing-punctuation": false, "blanks-around-lists": false, - "hr-style": false, - "no-trailing-spaces": false, + "blanks-around-headings": false, "no-multiple-blanks": false, + "no-trailing-spaces": false, + "no-trailing-punctuation": false, + "no-hard-tabs": false, + "hr-style": false, "strong-style": false, - "emphasis-style": false, - "no-hard-tabs": false + "emphasis-style": false } \ No newline at end of file