From 38beca21ccaa23c2ee93aa6848253d21d2a5a995 Mon Sep 17 00:00:00 2001 From: andrussal Date: Thu, 4 Dec 2025 13:50:52 +0100 Subject: [PATCH] Relax markdownlint rules for the book --- .markdownlint-cli2.jsonc | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .markdownlint-cli2.jsonc diff --git a/.markdownlint-cli2.jsonc b/.markdownlint-cli2.jsonc new file mode 100644 index 0000000..ee0da2b --- /dev/null +++ b/.markdownlint-cli2.jsonc @@ -0,0 +1,7 @@ +{ + "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. + } +}