From 0c25b00c8b90e3366048c76f92b7d61ea6592ce3 Mon Sep 17 00:00:00 2001 From: andrussal Date: Sat, 6 Dec 2025 11:17:26 +0100 Subject: [PATCH] Relax markdownlint rules for book --- .markdownlint-cli2.jsonc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.markdownlint-cli2.jsonc b/.markdownlint-cli2.jsonc index ee0da2b..fea4ebd 100644 --- a/.markdownlint-cli2.jsonc +++ b/.markdownlint-cli2.jsonc @@ -2,6 +2,9 @@ "config": { "MD013": false, // Line length: allow longer lines in prose and tables. "MD040": false, // Fenced code blocks language: allow language-less fences. - "MD060": false // Table column style: relax spacing requirements. + "MD060": false, // Table column style: relax spacing requirements. + "MD031": false, // Blank lines around fenced code blocks: allow compact fences. + "MD032": false, // Blank lines around lists: allow tight lists when desired. + "MD022": false // Blank lines around headings: allow headings adjacent to text. } }