From d95ed3ef6935c4bc0f7c85078c4ba32f824cb756 Mon Sep 17 00:00:00 2001 From: Baptiste Grenier Date: Wed, 8 Sep 2021 12:19:33 +0200 Subject: [PATCH] Try to find syntax for configuring MD013 exceptions (#318) Set a max line length of 120 to be more comfortable, with line length checks disabled for code excerpts and tables that are the legit cases for longer lines. See https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md013 --- .github/linters/.markdownlint.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/linters/.markdownlint.json b/.github/linters/.markdownlint.json index a7ddf4bbf4..de7f46b4e7 100644 --- a/.github/linters/.markdownlint.json +++ b/.github/linters/.markdownlint.json @@ -1,5 +1,9 @@ { - "MD013": false, + "MD013": { + "line_length": 120, + "code_blocks": false, + "tables": false + }, "MD014": false, "MD024": false, "MD026": {