]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
clang-format: sort alphabetically
authorRalph Boehme <slow@samba.org>
Fri, 30 Jun 2023 15:05:46 +0000 (17:05 +0200)
committerRalph Boehme <slow@samba.org>
Tue, 24 Oct 2023 14:47:57 +0000 (14:47 +0000)
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
Autobuild-User(master): Ralph Böhme <slow@samba.org>
Autobuild-Date(master): Tue Oct 24 14:47:57 UTC 2023 on atb-devel-224

.clang-format

index 6c7a021a44c66d24dd58e9cb66aaedb41395305f..c4c12b9955b388a0cb71404498792bf502ff3456 100644 (file)
@@ -1,9 +1,14 @@
 # https://clang.llvm.org/docs/ClangFormatStyleOptions.html
+AlignAfterOpenBracket: Align
+AlignEscapedNewlines: Left
+AllowAllArgumentsOnNextLine: true
+AllowAllParametersOfDeclarationOnNextLine: false
+AllowShortFunctionsOnASingleLine: Empty
+AllowShortIfStatementsOnASingleLine: false
+AlwaysBreakAfterReturnType: None
 BasedOnStyle: LLVM
-IndentWidth: 8
-ContinuationIndentWidth: 8
-UseTab: true
-BreakBeforeBraces: Custom
+BinPackArguments: false
+BinPackParameters: false
 BraceWrapping:
     AfterEnum: false
     AfterFunction: true
@@ -13,21 +18,16 @@ BraceWrapping:
     BeforeElse: false
     BeforeWhile: false
     AfterControlStatement: MultiLine
-AllowShortIfStatementsOnASingleLine: false
+BreakBeforeBinaryOperators: None
+BreakBeforeBraces: Custom
 ColumnLimit: 80
+ContinuationIndentWidth: 8
 IndentCaseLabels: false
-AlignAfterOpenBracket: Align
-BinPackParameters: false
-BinPackArguments: false
-AllowAllParametersOfDeclarationOnNextLine: false
-AllowAllArgumentsOnNextLine: true
-AllowShortFunctionsOnASingleLine: Empty
-AlwaysBreakAfterReturnType: None
-AlignEscapedNewlines: Left
-SortIncludes: false
 IndentGotoLabels: false
-WhitespaceSensitiveMacros: ['DEBUG']
-PenaltyReturnTypeOnItsOwnLine: 1000
+IndentWidth: 8
 PenaltyBreakAssignment: 200
 PenaltyBreakBeforeFirstCallParameter: 100
-BreakBeforeBinaryOperators: None
+PenaltyReturnTypeOnItsOwnLine: 1000
+SortIncludes: false
+UseTab: true
+WhitespaceSensitiveMacros: ['DEBUG']