From 83ccdceb05fac57169888b8270a7f1da479c6b5d Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Fri, 15 May 2026 13:44:00 +0200 Subject: [PATCH] style: ignore line length for markdown tables --- .markdownlint-cli2.jsonc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.markdownlint-cli2.jsonc b/.markdownlint-cli2.jsonc index 56cd87c..a4ea90f 100644 --- a/.markdownlint-cli2.jsonc +++ b/.markdownlint-cli2.jsonc @@ -6,7 +6,8 @@ // linting rules "config": { "MD013": { - "line_length": 120 + "line_length": 120, + "tables": false } } }