[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20200818162431.696423-1-alex.dewar90@gmail.com>
Date: Tue, 18 Aug 2020 17:24:31 +0100
From: Alex Dewar <alex.dewar90@...il.com>
To: Miguel Ojeda <miguel.ojeda.sandonis@...il.com>,
linux-kernel@...r.kernel.org, clang-built-linux@...glegroups.com
Cc: Alex Dewar <alex.dewar90@...il.com>
Subject: [PATCH] clang-format: Fix: Maximum line length is now 100
Since commit bdc48fa11e46 ("checkpatch/coding-style: deprecate 80-column
warning") the kernel style is now for lines to be a maximum of 100 rather
than 80 columns. Update .clang-format accordingly.
Signed-off-by: Alex Dewar <alex.dewar90@...il.com>
---
.clang-format | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.clang-format b/.clang-format
index a0a96088c74f..2b314a14a658 100644
--- a/.clang-format
+++ b/.clang-format
@@ -52,7 +52,7 @@ BreakConstructorInitializersBeforeComma: false
#BreakConstructorInitializers: BeforeComma # Unknown to clang-format-4.0
BreakAfterJavaFieldAnnotations: false
BreakStringLiterals: false
-ColumnLimit: 80
+ColumnLimit: 100
CommentPragmas: '^ IWYU pragma:'
#CompactNamespaces: false # Unknown to clang-format-4.0
ConstructorInitializerAllOnOneLineOrOnePerLine: false
--
2.28.0
Powered by blists - more mailing lists