From e4f1d0b0f9401c7956558a2e9bc5cd21369dbb55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frank=20Br=C3=BCckner?= Date: Fri, 8 Mar 2024 00:03:03 +0100 Subject: [PATCH] Update markdownlint configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The configuration for markdownlint has been updated to include setting the indentation of list item to 4 spaces ("MD007"). This is intended to ensure consistent formatting across the markdown documents. https://github.com/DavidAnson/markdownlint/blob/main/doc/md007.md Signed-off-by: Frank Brückner --- setup/markdownlint/markdownlint.json | 1 + 1 file changed, 1 insertion(+) diff --git a/setup/markdownlint/markdownlint.json b/setup/markdownlint/markdownlint.json index 71addb0..8b7228c 100644 --- a/setup/markdownlint/markdownlint.json +++ b/setup/markdownlint/markdownlint.json @@ -1,5 +1,6 @@ { "default": true, + "MD007": { "indent": 4 }, "MD013": false, "MD014": false, "MD024": false,