From f1c8016cf6f503db1782b49341ce515e6da79c45 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 18 Feb 2026 10:57:17 +0000 Subject: [PATCH] Add .markdownlintrc to configure linting exceptions Co-authored-by: squassina <8495707+squassina@users.noreply.github.com> --- .markdownlintrc | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .markdownlintrc diff --git a/.markdownlintrc b/.markdownlintrc new file mode 100644 index 00000000..a487a13d --- /dev/null +++ b/.markdownlintrc @@ -0,0 +1,11 @@ +{ + "default": true, + "MD013": { + "line_length": 150, + "code_blocks": false, + "tables": false + }, + "MD033": { + "allowed_elements": ["div", "img"] + } +}