@@ -3,29 +3,58 @@ IndentWidth: 8
33TabWidth : 8
44UseTab : Always
55ColumnLimit : 80
6- BreakBeforeBraces : Linux
6+ BreakBeforeBraces : Custom
77BraceWrapping :
88 AfterFunction : true
9+ AfterControlStatement : Never
10+ AfterCaseLabel : false
11+ AfterClass : false
12+ AfterEnum : false
13+ AfterNamespace : false
14+ AfterStruct : false
15+ AfterUnion : false
16+ BeforeCatch : true
17+ BeforeElse : true
18+ BeforeLambdaBody : false
19+ BeforeWhile : false
20+ RemoveBracesLLVM : true
921PointerAlignment : Right
1022ReferenceAlignment : Right
1123AlignAfterOpenBracket : Align
12- BinPackArguments : false
24+ BinPackArguments : true
1325BinPackParameters : false
26+ AllowAllArgumentsOnNextLine : true
27+ ContinuationIndentWidth : 0
28+ IndentWrappedFunctionNames : false
29+ AllowAllParametersOfDeclarationOnNextLine : true
1430SortIncludes : true
1531IncludeBlocks : Regroup
1632IncludeCategories :
17- - Regex : ' ^<[a-z_]+ \.h>'
33+ - Regex : ' ^<fcntl\.h>|^<signal\.h>|^<stdio\.h>|^<unistd\.h>|^<sys/.* \.h>'
1834 Priority : 1
19- - Regex : ' ^<[a-z_]+>'
35+ - Regex : ' ^<[a-z_]+\.h >'
2036 Priority : 2
21- - Regex : ' ^<boost/.* >'
37+ - Regex : ' ^<[a-z_]+>|^<chrono>|^<cstring>|^<fstream>|^<iostream>|^<thread >'
2238 Priority : 3
23- - Regex : ' ^".*" '
39+ - Regex : ' ^<boost/.*> '
2440 Priority : 4
25- AllowShortBlocksOnASingleLine : Never
41+ - Regex : ' ^<clickhouse/.*>|^<spdlog/.*>'
42+ Priority : 5
43+ - Regex : ' ^".*"'
44+ Priority : 6
45+ AllowShortBlocksOnASingleLine : Always
2646AllowShortFunctionsOnASingleLine : None
27- AllowShortIfStatementsOnASingleLine : Never
47+ AllowShortIfStatementsOnASingleLine : Never
48+ AllowShortLoopsOnASingleLine : false
49+ InsertBraces : false
2850IndentCaseLabels : false
2951AccessModifierOffset : -8
3052Standard : Latest
3153AlwaysBreakAfterReturnType : All
54+ SpaceAfterCStyleCast : false
55+ SpaceBeforeParens : ControlStatements
56+ AlignOperands : Align
57+ AlignConsecutiveDeclarations : false
58+ AlignConsecutiveAssignments : false
59+ AlignConsecutiveMacros : false
60+ DerivePointerAlignment : false
0 commit comments