From 3917e6b63a57c993214d7910d0dce7f761ee42c6 Mon Sep 17 00:00:00 2001 From: piegames Date: Fri, 2 Jan 2026 13:30:39 +0100 Subject: [PATCH] clang-format: Raise column limit to 110 100 causes too much diff churn w.r.t. current code style "120 cols would be nuisance for us because our two-column layout is exactly 118 wide (not counting the line number margin)" "Ours is exactly 118 too" Change-Id: Ifc7f21003e1011a17a1d799afaee775aeb927fd5 --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index f1cdeae61..e5a5af086 100644 --- a/.clang-format +++ b/.clang-format @@ -36,7 +36,7 @@ BreakAfterAttributes: Always BreakBeforeBinaryOperators: NonAssignment BreakBeforeBraces: Custom BreakConstructorInitializers: BeforeComma -ColumnLimit: 100 +ColumnLimit: 110 EmptyLineAfterAccessModifier: Leave EmptyLineBeforeAccessModifier: Leave FixNamespaceComments: false