From a0d9d86956c2b53a51de32da196f09ddf34a4ca3 Mon Sep 17 00:00:00 2001 From: HueByte Date: Tue, 24 Feb 2026 21:00:51 +0100 Subject: [PATCH] fix: update markdownlint configuration to allow compact table pipe style --- .markdownlint-cli2.jsonc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.markdownlint-cli2.jsonc b/.markdownlint-cli2.jsonc index 1b4e73d..d091c60 100644 --- a/.markdownlint-cli2.jsonc +++ b/.markdownlint-cli2.jsonc @@ -9,7 +9,9 @@ // Allow inline HTML (docfx uses it) "MD033": false, // Allow bare URLs - "MD034": false + "MD034": false, + // Allow compact table pipe style (flow docs use compact tables) + "MD060": false }, "globs": ["**/*.md"],