Skip to content

Commit f83d6c5

Browse files
committed
clang-format: sort alphabetically
Signed-off-by: Ralph Boehme <[email protected]> Reviewed-by: Andreas Schneider <[email protected]> Autobuild-User(master): Ralph Böhme <[email protected]> Autobuild-Date(master): Tue Oct 24 14:47:57 UTC 2023 on atb-devel-224
1 parent 071b102 commit f83d6c5

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

.clang-format

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
# https://clang.llvm.org/docs/ClangFormatStyleOptions.html
2+
AlignAfterOpenBracket: Align
3+
AlignEscapedNewlines: Left
4+
AllowAllArgumentsOnNextLine: true
5+
AllowAllParametersOfDeclarationOnNextLine: false
6+
AllowShortFunctionsOnASingleLine: Empty
7+
AllowShortIfStatementsOnASingleLine: false
8+
AlwaysBreakAfterReturnType: None
29
BasedOnStyle: LLVM
3-
IndentWidth: 8
4-
ContinuationIndentWidth: 8
5-
UseTab: true
6-
BreakBeforeBraces: Custom
10+
BinPackArguments: false
11+
BinPackParameters: false
712
BraceWrapping:
813
AfterEnum: false
914
AfterFunction: true
@@ -13,21 +18,16 @@ BraceWrapping:
1318
BeforeElse: false
1419
BeforeWhile: false
1520
AfterControlStatement: MultiLine
16-
AllowShortIfStatementsOnASingleLine: false
21+
BreakBeforeBinaryOperators: None
22+
BreakBeforeBraces: Custom
1723
ColumnLimit: 80
24+
ContinuationIndentWidth: 8
1825
IndentCaseLabels: false
19-
AlignAfterOpenBracket: Align
20-
BinPackParameters: false
21-
BinPackArguments: false
22-
AllowAllParametersOfDeclarationOnNextLine: false
23-
AllowAllArgumentsOnNextLine: true
24-
AllowShortFunctionsOnASingleLine: Empty
25-
AlwaysBreakAfterReturnType: None
26-
AlignEscapedNewlines: Left
27-
SortIncludes: false
2826
IndentGotoLabels: false
29-
WhitespaceSensitiveMacros: ['DEBUG']
30-
PenaltyReturnTypeOnItsOwnLine: 1000
27+
IndentWidth: 8
3128
PenaltyBreakAssignment: 200
3229
PenaltyBreakBeforeFirstCallParameter: 100
33-
BreakBeforeBinaryOperators: None
30+
PenaltyReturnTypeOnItsOwnLine: 1000
31+
SortIncludes: false
32+
UseTab: true
33+
WhitespaceSensitiveMacros: ['DEBUG']

0 commit comments

Comments
 (0)