From: Emil Velikov Date: Sun, 8 Sep 2024 10:38:12 +0000 (+0100) Subject: .editorconfig: max_line_length=90 like clang-format X-Git-Tag: v34~383 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=b1bd040e6c06287b4e4299790633a0fd49bc23e9;p=thirdparty%2Fkmod.git .editorconfig: max_line_length=90 like clang-format Ideally the config (and editors) will have hard and soft limit for the line length. Until then, update the config so that clang-format does not excessively reformat. Signed-off-by: Emil Velikov Link: https://github.com/kmod-project/kmod/pull/118 Signed-off-by: Lucas De Marchi --- diff --git a/.editorconfig b/.editorconfig index cc175085..f4943a46 100644 --- a/.editorconfig +++ b/.editorconfig @@ -10,7 +10,7 @@ tab_width = 8 [*.{c,h}] indent_style = tab -max_line_length = 80 +max_line_length = 90 [{Makefile*,*.mk}] indent_style = tab