From f843d5bd347feb688a22393af5578c7b132e19bf Mon Sep 17 00:00:00 2001 From: Isaac Oscar Gariano Date: Fri, 22 Aug 2025 03:58:57 +1000 Subject: [PATCH] Disable editor hard wrapping for .rst and .md files. The .md and .rst files allready present do not hard wrap lines (the style seems to be one line per paragraph, which could be a few hundred characters long). So this makes those files have no line length limit, instead of 100. --- .editorconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/.editorconfig b/.editorconfig index 65155d32d..ad3cfb512 100644 --- a/.editorconfig +++ b/.editorconfig @@ -13,6 +13,7 @@ max_line_length = 100 indent_style = tab [*.{md,rst}] +max_line_length = unset trim_trailing_whitespace = false [*.sh]