From: Jörg Behrmann Date: Fri, 20 Sep 2024 09:15:17 +0000 (+0200) Subject: editorconfig: configure line length more widely X-Git-Tag: v25~276^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=91155e90c7bcd06ee0f0a0691f5d322f47fb1024;p=thirdparty%2Fmkosi.git editorconfig: configure line length more widely --- diff --git a/.dir-locals.el b/.dir-locals.el index 1c3fbcaa0..6223f7c60 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -9,9 +9,13 @@ ((python-mode . ((indent-tabs-mode . nil) (tab-width . 4) - (fill-column . 99))) + (fill-column . 109))) + (python-ts-mode . ((indent-tabs-mode . nil) + (tab-width . 4) + (fill-column . 109))) (sh-mode . ((sh-basic-offset . 4) (sh-indentation . 4))) + (markdown-mode . ((fill-column . 109))) (nil . ((indent-tabs-mode . nil) (tab-width . 4) - (fill-column . 79))) ) + (fill-column . 79)))) diff --git a/.editorconfig b/.editorconfig index 4c7a5f214..a093b65ce 100644 --- a/.editorconfig +++ b/.editorconfig @@ -8,5 +8,8 @@ charset = utf-8 indent_style = space indent_size = 4 +[*.{py,md}] +max_line_length = 109 + [*.yaml,*.yml] indent_size = 2