From fd4dbd70ee974546d0d04bd7184db88f0fe07f0b Mon Sep 17 00:00:00 2001 From: Laurent Monin Date: Thu, 21 Sep 2023 23:55:52 +0200 Subject: [PATCH] Add a configuration for markdownlint Ignore some warnings that are spamming the report --- .markdownlint.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .markdownlint.json diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 000000000..5851f7cf7 --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,10 @@ +{ + "no-multiple-blanks": false, + "line-length": false, + "blanks-around-headers": false, + "no-duplicate-header": { + "allow_different_nesting": true + }, + "single-h1": false, + "blanks-around-lists": false +}