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.
This commit is contained in:
Isaac Oscar Gariano
2025-08-22 03:58:57 +10:00
committed by Johannes Altmanninger
parent 4a9fd1bbbb
commit f843d5bd34

View File

@@ -13,6 +13,7 @@ max_line_length = 100
indent_style = tab
[*.{md,rst}]
max_line_length = unset
trim_trailing_whitespace = false
[*.sh]