From 3845d103c3b3bedd87b6ffa715396287ef5e48fd Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sun, 18 Jan 2026 22:01:11 +0000 Subject: [PATCH] chore(settings): update line length settings for code blocks - Added configurations to manage line length for code blocks, including options to ignore code blocks and set a specific line length for them. --- settings.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/settings.json b/settings.json index 5ad8a57..554f895 100644 --- a/settings.json +++ b/settings.json @@ -751,6 +751,9 @@ }, "line-length": { // MD013 "line_length": 80, + "code_blocks": false, + "ignore_code_blocks": true, + "code_block_line_length": 280, "tables": false } },