From 0211c75b1b6efb91860f84b04688b0a28c179e78 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Wed, 29 Oct 2025 09:43:16 +0000 Subject: [PATCH] chore(markdownlint): add line length rule allowing up to 80 characters and disable table line length enforcement --- markdownlint.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/markdownlint.yaml b/markdownlint.yaml index 7d929ec..97ea9ff 100644 --- a/markdownlint.yaml +++ b/markdownlint.yaml @@ -10,3 +10,8 @@ no-hard-tabs: # MD010 blanks-around-fences: # MD031 # Don't force blank lines around code blocks in lists. list_items: false + +line-length: # MD013 + # Allow lines up to 120 characters. + line_length: 80 + tables: false