@@ -4,48 +4,21 @@ Language: Cpp
4
4
AccessModifierOffset : -1
5
5
AlignAfterOpenBracket : Align
6
6
AlignArrayOfStructures : None
7
- AlignConsecutiveAssignments :
8
- Enabled : false
9
- AcrossEmptyLines : false
10
- AcrossComments : false
11
- AlignCompound : false
12
- PadOperators : true
13
- AlignConsecutiveBitFields :
14
- Enabled : false
15
- AcrossEmptyLines : false
16
- AcrossComments : false
17
- AlignCompound : false
18
- PadOperators : false
19
- AlignConsecutiveDeclarations :
20
- Enabled : false
21
- AcrossEmptyLines : false
22
- AcrossComments : false
23
- AlignCompound : false
24
- PadOperators : false
25
- AlignConsecutiveMacros :
26
- Enabled : false
27
- AcrossEmptyLines : false
28
- AcrossComments : false
29
- AlignCompound : false
30
- PadOperators : false
31
- AlignConsecutiveShortCaseStatements :
32
- Enabled : false
33
- AcrossEmptyLines : false
34
- AcrossComments : false
35
- AlignCaseColons : false
7
+ AlignConsecutiveMacros : None
8
+ AlignConsecutiveAssignments : None
9
+ AlignConsecutiveBitFields : None
10
+ AlignConsecutiveDeclarations : None
36
11
AlignEscapedNewlines : Left
37
12
AlignOperands : Align
38
- AlignTrailingComments :
39
- Kind : Always
40
- OverEmptyLines : 0
13
+ AlignTrailingComments : true
41
14
AllowAllArgumentsOnNextLine : true
42
15
AllowAllParametersOfDeclarationOnNextLine : false
16
+ AllowShortEnumsOnASingleLine : true
43
17
AllowShortBlocksOnASingleLine : Never
44
18
AllowShortCaseLabelsOnASingleLine : false
45
- AllowShortEnumsOnASingleLine : true
46
19
AllowShortFunctionsOnASingleLine : Inline
47
- AllowShortIfStatementsOnASingleLine : Never
48
20
AllowShortLambdasOnASingleLine : All
21
+ AllowShortIfStatementsOnASingleLine : Never
49
22
AllowShortLoopsOnASingleLine : false
50
23
AlwaysBreakAfterDefinitionReturnType : None
51
24
AlwaysBreakAfterReturnType : None
@@ -55,18 +28,17 @@ AttributeMacros:
55
28
- __capability
56
29
BinPackArguments : true
57
30
BinPackParameters : false
58
- BitFieldColonSpacing : Both
59
31
BraceWrapping :
60
32
AfterCaseLabel : false
61
33
AfterClass : false
62
34
AfterControlStatement : Never
63
35
AfterEnum : false
64
- AfterExternBlock : false
65
36
AfterFunction : false
66
37
AfterNamespace : false
67
38
AfterObjCDeclaration : false
68
39
AfterStruct : false
69
40
AfterUnion : false
41
+ AfterExternBlock : false
70
42
BeforeCatch : false
71
43
BeforeElse : false
72
44
BeforeLambdaBody : false
@@ -75,28 +47,33 @@ BraceWrapping:
75
47
SplitEmptyFunction : true
76
48
SplitEmptyRecord : true
77
49
SplitEmptyNamespace : true
78
- BreakAfterAttributes : Never
79
- BreakAfterJavaFieldAnnotations : false
80
- BreakArrays : true
81
50
BreakBeforeBinaryOperators : None
82
- BreakBeforeConceptDeclarations : Always
51
+ BreakBeforeConceptDeclarations : true
83
52
BreakBeforeBraces : Attach
84
- BreakBeforeInlineASMColon : OnlyMultiline
53
+ BreakBeforeInheritanceComma : false
54
+ BreakInheritanceList : BeforeColon
85
55
BreakBeforeTernaryOperators : true
56
+ BreakConstructorInitializersBeforeComma : false
86
57
BreakConstructorInitializers : BeforeColon
87
- BreakInheritanceList : BeforeColon
58
+ BreakAfterJavaFieldAnnotations : false
88
59
BreakStringLiterals : true
89
60
ColumnLimit : 80
90
61
CommentPragmas : ' ^ IWYU pragma:'
62
+ QualifierAlignment : Leave
91
63
CompactNamespaces : false
92
64
ConstructorInitializerIndentWidth : 4
93
65
ContinuationIndentWidth : 4
94
66
Cpp11BracedListStyle : true
67
+ DeriveLineEnding : true
95
68
DerivePointerAlignment : false
96
69
DisableFormat : false
97
70
EmptyLineAfterAccessModifier : Never
98
71
EmptyLineBeforeAccessModifier : LogicalBlock
99
72
ExperimentalAutoDetectBinPacking : false
73
+ PackConstructorInitializers : NextLine
74
+ BasedOnStyle : ' '
75
+ ConstructorInitializerAllOnOneLineOrOnePerLine : false
76
+ AllowAllConstructorInitializersOnNextLine : true
100
77
FixNamespaceComments : true
101
78
ForEachMacros :
102
79
- foreach
@@ -125,30 +102,19 @@ IncludeCategories:
125
102
IncludeIsMainRegex : ' ([-_](test|unittest))?$'
126
103
IncludeIsMainSourceRegex : ' '
127
104
IndentAccessModifiers : false
128
- IndentCaseBlocks : false
129
105
IndentCaseLabels : true
130
- IndentExternBlock : AfterExternBlock
106
+ IndentCaseBlocks : false
131
107
IndentGotoLabels : true
132
108
IndentPPDirectives : None
133
- IndentRequiresClause : true
109
+ IndentExternBlock : AfterExternBlock
110
+ IndentRequires : false
134
111
IndentWidth : 2
135
112
IndentWrappedFunctionNames : false
136
- InsertBraces : false
137
- InsertNewlineAtEOF : false
138
113
InsertTrailingCommas : None
139
- IntegerLiteralSeparator :
140
- Binary : 0
141
- BinaryMinDigits : 0
142
- Decimal : 0
143
- DecimalMinDigits : 0
144
- Hex : 0
145
- HexMinDigits : 0
146
114
JavaScriptQuotes : Leave
147
115
JavaScriptWrapImports : true
148
116
KeepEmptyLinesAtTheStartOfBlocks : false
149
- KeepEmptyLinesAtEOF : false
150
117
LambdaBodyIndentation : Signature
151
- LineEnding : DeriveLF
152
118
MacroBlockBegin : ' '
153
119
MacroBlockEnd : ' '
154
120
MaxEmptyLinesToKeep : 1
@@ -158,7 +124,6 @@ ObjCBlockIndentWidth: 2
158
124
ObjCBreakBeforeNestedBlockParam : true
159
125
ObjCSpaceAfterProperty : false
160
126
ObjCSpaceBeforeProtocolList : true
161
- PackConstructorInitializers : NextLine
162
127
PenaltyBreakAssignment : 2
163
128
PenaltyBreakBeforeFirstCallParameter : 1
164
129
PenaltyBreakComment : 300
@@ -167,11 +132,10 @@ PenaltyBreakOpenParenthesis: 0
167
132
PenaltyBreakString : 1000
168
133
PenaltyBreakTemplateDeclaration : 10
169
134
PenaltyExcessCharacter : 1000000
170
- PenaltyIndentedWhitespace : 0
171
135
PenaltyReturnTypeOnItsOwnLine : 200
136
+ PenaltyIndentedWhitespace : 0
172
137
PointerAlignment : Left
173
138
PPIndentWidth : -1
174
- QualifierAlignment : Leave
175
139
RawStringFormats :
176
140
- Language : Cpp
177
141
Delimiters :
@@ -205,25 +169,19 @@ RawStringFormats:
205
169
ReferenceAlignment : Pointer
206
170
ReflowComments : true
207
171
RemoveBracesLLVM : false
208
- RemoveParentheses : Leave
209
- RemoveSemicolon : false
210
- RequiresClausePosition : OwnLine
211
- RequiresExpressionIndentation : OuterScope
212
172
SeparateDefinitionBlocks : Leave
213
173
ShortNamespaceLines : 1
214
174
SortIncludes : CaseSensitive
215
175
SortJavaStaticImport : Before
216
- SortUsingDeclarations : LexicographicNumeric
176
+ SortUsingDeclarations : true
217
177
SpaceAfterCStyleCast : false
218
178
SpaceAfterLogicalNot : false
219
179
SpaceAfterTemplateKeyword : true
220
- SpaceAroundPointerQualifiers : Default
221
180
SpaceBeforeAssignmentOperators : true
222
181
SpaceBeforeCaseColon : false
223
182
SpaceBeforeCpp11BracedList : false
224
183
SpaceBeforeCtorInitializerColon : true
225
184
SpaceBeforeInheritanceColon : true
226
- SpaceBeforeJsonColon : false
227
185
SpaceBeforeParens : ControlStatements
228
186
SpaceBeforeParensOptions :
229
187
AfterControlStatements : true
@@ -232,39 +190,37 @@ SpaceBeforeParensOptions:
232
190
AfterFunctionDeclarationName : false
233
191
AfterIfMacros : true
234
192
AfterOverloadedOperator : false
235
- AfterRequiresInClause : false
236
- AfterRequiresInExpression : false
237
193
BeforeNonEmptyParentheses : false
194
+ SpaceAroundPointerQualifiers : Default
238
195
SpaceBeforeRangeBasedForLoopColon : true
239
- SpaceBeforeSquareBrackets : false
240
196
SpaceInEmptyBlock : false
197
+ SpaceInEmptyParentheses : false
241
198
SpacesBeforeTrailingComments : 2
242
199
SpacesInAngles : Never
200
+ SpacesInConditionalStatement : false
243
201
SpacesInContainerLiterals : true
202
+ SpacesInCStyleCastParentheses : false
244
203
SpacesInLineCommentPrefix :
245
204
Minimum : 1
246
205
Maximum : -1
247
- SpacesInParens : Never
248
- SpacesInParensOptions :
249
- InCStyleCasts : false
250
- InConditionalStatements : false
251
- InEmptyParentheses : false
252
- Other : false
206
+ SpacesInParentheses : false
253
207
SpacesInSquareBrackets : false
208
+ SpaceBeforeSquareBrackets : false
209
+ BitFieldColonSpacing : Both
254
210
Standard : Auto
255
211
StatementAttributeLikeMacros :
256
212
- Q_EMIT
257
213
StatementMacros :
258
214
- Q_UNUSED
259
215
- QT_REQUIRE_VERSION
260
216
TabWidth : 8
217
+ UseCRLF : false
261
218
UseTab : Never
262
- VerilogBreakBetweenInstancePorts : true
263
219
WhitespaceSensitiveMacros :
220
+ - STRINGIZE
221
+ - PP_STRINGIZE
264
222
- BOOST_PP_STRINGIZE
265
- - CF_SWIFT_NAME
266
223
- NS_SWIFT_NAME
267
- - PP_STRINGIZE
268
- - STRINGIZE
224
+ - CF_SWIFT_NAME
269
225
...
270
226
0 commit comments