From d9d3e21281f085303a6299e21cf5cfa034dec650 Mon Sep 17 00:00:00 2001 From: Jan Hohenheim Date: Thu, 11 Apr 2024 14:38:09 +0200 Subject: [PATCH 1/2] Simplify lints (#1478) --- .markdownlint.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.markdownlint.json b/.markdownlint.json index 196cbc370..7aeeca0ed 100644 --- a/.markdownlint.json +++ b/.markdownlint.json @@ -1,12 +1,10 @@ { "line-length": { - "line_length": 80, + "line_length": 160, "code_blocks": false }, - "ul-style": { - "style": "dash" - }, "no-trailing-punctuation": { "punctuation": ".,;:。,;:" } } + From ec002086a815a5c2bd7537b20da675b0bddad7f0 Mon Sep 17 00:00:00 2001 From: Jan Hohenheim Date: Thu, 11 Apr 2024 19:00:57 +0200 Subject: [PATCH 2/2] Relax lints further (#1480) --- .markdownlint.json | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.markdownlint.json b/.markdownlint.json index 7aeeca0ed..f0b463e0e 100644 --- a/.markdownlint.json +++ b/.markdownlint.json @@ -3,8 +3,13 @@ "line_length": 160, "code_blocks": false }, - "no-trailing-punctuation": { - "punctuation": ".,;:。,;:" - } -} - + "blanks-around-lists": 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 newline at end of file