From 83f0ec7978745f7f0778a17dae8ad64e8cbf87ff Mon Sep 17 00:00:00 2001 From: Andreas Rammhold Date: Thu, 30 Sep 2021 13:40:51 +0200 Subject: [PATCH 1/2] editorconfig: enforce maximum line length in .c and .h files --- .editorconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/.editorconfig b/.editorconfig index d24acc1f0c..b80f01b233 100644 --- a/.editorconfig +++ b/.editorconfig @@ -18,6 +18,7 @@ charset = utf-8 [*.{c,h}] indent_style = space indent_size = 8 +max_line_length = 109 [*.sh] indent_style = space From c5f26a0250bc2d602727c18c0b332673e4729ea0 Mon Sep 17 00:00:00 2001 From: Andreas Rammhold Date: Thu, 30 Sep 2021 13:44:26 +0200 Subject: [PATCH 2/2] editorconfig: set maximum line length to 109 for man/*.xml files --- .editorconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/.editorconfig b/.editorconfig index b80f01b233..02196f72be 100644 --- a/.editorconfig +++ b/.editorconfig @@ -31,3 +31,4 @@ indent_size = 8 [man/*.xml] indent_size = 2 indent_style = space +max_line_length = 109