From b6e7072526c3f6097466d6293ac6ff9ea6680076 Mon Sep 17 00:00:00 2001 From: EasterRobert Date: Mon, 2 Feb 2026 08:54:10 +0100 Subject: [PATCH] chore: add markdownlint configuration Add .markdownlint.json to configure linting rules for Markdown files, disabling line length checks for better readability. --- .markdownlint.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .markdownlint.json diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 000000000..6ab7bd17c --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,5 @@ +{ + "default": true, + "MD013": false, + "MD033": false +}