From 6c4fbaddc793bf18d49611831dd5285bf1f6fc22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frank=20Br=C3=BCckner?= Date: Fri, 8 Mar 2024 09:58:58 +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 the correct formatting for markdown documents in MkDocs. References: - https://github.com/DavidAnson/markdownlint/blob/main/doc/md007.md - https://python-markdown.github.io/#differences 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,