From 5a26929be5b71e8df975b65638e3385d1c5af98a Mon Sep 17 00:00:00 2001 From: James Cherry Date: Fri, 21 Nov 2025 07:48:44 -0700 Subject: [PATCH] clang format from PR #317 Signed-off-by: James Cherry --- .clang-format | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.clang-format b/.clang-format index cd7dc197..d50ce987 100644 --- a/.clang-format +++ b/.clang-format @@ -12,18 +12,20 @@ AllowShortLoopsOnASingleLine: false AlwaysBreakAfterReturnType: TopLevel BinPackArguments: false # fails -BinPackParameters: false +BinPackParameters: AlwaysOnePerLine BraceWrapping: AfterClass: true AfterStruct: true AfterFunction: true BeforeElse: true +BreakBeforeBinaryOperators: NonAssignment BreakBeforeBraces: Custom # fails if all initializers fit on one line BreakConstructorInitializers: AfterColon -ColumnLimit: 0 +ColumnLimit: 90 # fails -ConstructorInitializerAllOnOneLineOrOnePerLine: false ConstructorInitializerIndentWidth: 2 IncludeBlocks: Preserve +PackConstructorInitializers: Never PointerAlignment: Right +SortIncludes: Never