clang format from PR #317

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry
2025-11-21 07:48:44 -07:00
parent 002c4c41d2
commit 5a26929be5

View File

@@ -12,18 +12,20 @@ AllowShortLoopsOnASingleLine: false
AlwaysBreakAfterReturnType: TopLevel AlwaysBreakAfterReturnType: TopLevel
BinPackArguments: false BinPackArguments: false
# fails # fails
BinPackParameters: false BinPackParameters: AlwaysOnePerLine
BraceWrapping: BraceWrapping:
AfterClass: true AfterClass: true
AfterStruct: true AfterStruct: true
AfterFunction: true AfterFunction: true
BeforeElse: true BeforeElse: true
BreakBeforeBinaryOperators: NonAssignment
BreakBeforeBraces: Custom BreakBeforeBraces: Custom
# fails if all initializers fit on one line # fails if all initializers fit on one line
BreakConstructorInitializers: AfterColon BreakConstructorInitializers: AfterColon
ColumnLimit: 0 ColumnLimit: 90
# fails # fails
ConstructorInitializerAllOnOneLineOrOnePerLine: false
ConstructorInitializerIndentWidth: 2 ConstructorInitializerIndentWidth: 2
IncludeBlocks: Preserve IncludeBlocks: Preserve
PackConstructorInitializers: Never
PointerAlignment: Right PointerAlignment: Right
SortIncludes: Never