From 36401dc8f44a9c857b896bee807ee64812741c40 Mon Sep 17 00:00:00 2001 From: Jose Date: Sun, 25 Jan 2026 10:50:44 +0100 Subject: [PATCH] =?UTF-8?q?chore=20=F0=9F=93=A6:=20Add=20markdown=20lintin?= =?UTF-8?q?g=20config=20for=20line=20length=20and=20code=20block=20formatt?= =?UTF-8?q?ing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit adds a new markdown linting configuration to enforce line length limits and consistent formatting of code blocks across the project. --- .markdownlint.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .markdownlint.json diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 0000000..8862099 --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,7 @@ +{ + "MD013": { + "line_length": 100, + "code_block_line_length": 120, + "tables": false + } +} \ No newline at end of file