From b1bd040e6c06287b4e4299790633a0fd49bc23e9 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Sun, 8 Sep 2024 11:38:12 +0100 Subject: [PATCH] .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 --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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