From ee69ba6ef8813440a7c50a3ccec28e3783cfbe0f Mon Sep 17 00:00:00 2001 From: Christian Visintin Date: Mon, 8 Jun 2026 09:02:35 +0200 Subject: [PATCH] docs: add markdownlint config for docs site --- .markdownlint-cli2.jsonc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .markdownlint-cli2.jsonc diff --git a/.markdownlint-cli2.jsonc b/.markdownlint-cli2.jsonc new file mode 100644 index 0000000..77350e1 --- /dev/null +++ b/.markdownlint-cli2.jsonc @@ -0,0 +1,15 @@ +{ + // Markdown lint config for the termscp docs site (mdBook). + "config": { + // Line length is impractical for keyboard/style tables and long prose; + // mdBook reflows in the browser, so we don't enforce a hard wrap. + "MD013": false + }, + "globs": ["docs/**/*.md"], + "ignores": [ + // mdBook build output. + "**/book/**", + // SUMMARY.md uses multiple level-1 headings as mdBook part titles. + "**/SUMMARY.md" + ] +}