11---
2+ Language : Cpp
23BasedOnStyle : Google
34AccessModifierOffset : -1
45AlignAfterOpenBracket : Align
5- AlignConsecutiveMacros : false
6- AlignConsecutiveAssignments : false
7- AlignConsecutiveDeclarations : false
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
836AlignEscapedNewlines : Left
9- AlignOperands : true
10- AlignTrailingComments : true
37+ AlignOperands : Align
38+ AlignTrailingComments :
39+ Kind : Always
40+ OverEmptyLines : 0
1141AllowAllArgumentsOnNextLine : true
12- AllowAllConstructorInitializersOnNextLine : true
1342AllowAllParametersOfDeclarationOnNextLine : true
1443AllowShortBlocksOnASingleLine : Never
1544AllowShortCaseLabelsOnASingleLine : false
45+ AllowShortEnumsOnASingleLine : true
1646AllowShortFunctionsOnASingleLine : Inline
17- AllowShortLambdasOnASingleLine : All
1847AllowShortIfStatementsOnASingleLine : Never
48+ AllowShortLambdasOnASingleLine : All
1949AllowShortLoopsOnASingleLine : false
2050AlwaysBreakAfterDefinitionReturnType : None
2151AlwaysBreakAfterReturnType : None
2252AlwaysBreakBeforeMultilineStrings : true
2353AlwaysBreakTemplateDeclarations : Yes
54+ AttributeMacros :
55+ - __capability
2456BinPackArguments : true
2557BinPackParameters : true
58+ BitFieldColonSpacing : Both
2659BraceWrapping :
2760 AfterCaseLabel : false
2861 AfterClass : false
29- AfterControlStatement : false
62+ AfterControlStatement : Never
3063 AfterEnum : false
64+ AfterExternBlock : false
3165 AfterFunction : false
3266 AfterNamespace : false
3367 AfterObjCDeclaration : false
3468 AfterStruct : false
3569 AfterUnion : false
36- AfterExternBlock : false
3770 BeforeCatch : false
3871 BeforeElse : false
72+ BeforeLambdaBody : false
73+ BeforeWhile : false
3974 IndentBraces : false
4075 SplitEmptyFunction : true
4176 SplitEmptyRecord : true
4277 SplitEmptyNamespace : true
78+ BreakAfterAttributes : Always
79+ BreakAfterJavaFieldAnnotations : false
80+ BreakArrays : true
4381BreakBeforeBinaryOperators : None
82+ BreakBeforeConceptDeclarations : Always
4483BreakBeforeBraces : Attach
45- BreakBeforeInheritanceComma : false
46- BreakInheritanceList : BeforeColon
84+ BreakBeforeInlineASMColon : OnlyMultiline
4785BreakBeforeTernaryOperators : true
48- BreakConstructorInitializersBeforeComma : false
4986BreakConstructorInitializers : BeforeColon
50- BreakAfterJavaFieldAnnotations : false
87+ BreakInheritanceList : BeforeColon
5188BreakStringLiterals : true
5289ColumnLimit : 80
5390CommentPragmas : ' ^ IWYU pragma:'
5491CompactNamespaces : false
55- ConstructorInitializerAllOnOneLineOrOnePerLine : true
5692ConstructorInitializerIndentWidth : 4
5793ContinuationIndentWidth : 4
5894Cpp11BracedListStyle : true
59- DeriveLineEnding : true
6095DerivePointerAlignment : false
6196DisableFormat : false
97+ EmptyLineAfterAccessModifier : Never
98+ EmptyLineBeforeAccessModifier : LogicalBlock
6299ExperimentalAutoDetectBinPacking : false
63100FixNamespaceComments : true
64101ForEachMacros :
65102 - foreach
66103 - Q_FOREACH
67104 - BOOST_FOREACH
105+ IfMacros :
106+ - KJ_IF_MAYBE
68107IncludeBlocks : Regroup
69108IncludeCategories :
70109 - Regex : ' ^<ext/.*\.h>'
71110 Priority : 2
72111 SortPriority : 0
112+ CaseSensitive : false
73113 - Regex : ' ^<.*\.h>'
74114 Priority : 1
75115 SortPriority : 0
116+ CaseSensitive : false
76117 - Regex : ' ^<.*'
77118 Priority : 2
78119 SortPriority : 0
120+ CaseSensitive : false
79121 - Regex : ' .*'
80122 Priority : 3
81123 SortPriority : 0
124+ CaseSensitive : false
82125IncludeIsMainRegex : ' ([-_](test|unittest))?$'
83126IncludeIsMainSourceRegex : ' '
127+ IndentAccessModifiers : false
128+ IndentCaseBlocks : false
84129IndentCaseLabels : true
130+ IndentExternBlock : AfterExternBlock
85131IndentGotoLabels : true
86132IndentPPDirectives : None
133+ IndentRequiresClause : true
87134IndentWidth : 2
88135IndentWrappedFunctionNames : false
136+ InsertBraces : false
137+ InsertNewlineAtEOF : false
138+ InsertTrailingCommas : None
139+ IntegerLiteralSeparator :
140+ Binary : 0
141+ BinaryMinDigits : 0
142+ Decimal : 0
143+ DecimalMinDigits : 0
144+ Hex : 0
145+ HexMinDigits : 0
89146JavaScriptQuotes : Leave
90147JavaScriptWrapImports : true
91148KeepEmptyLinesAtTheStartOfBlocks : false
149+ KeepEmptyLinesAtEOF : false
150+ LambdaBodyIndentation : Signature
151+ LineEnding : DeriveLF
92152MacroBlockBegin : ' '
93153MacroBlockEnd : ' '
154+ Macros :
155+ - ' HAL_ENUM(name)=enum name'
94156MaxEmptyLinesToKeep : 1
95157NamespaceIndentation : None
96158ObjCBinPackProtocolList : Never
97159ObjCBlockIndentWidth : 2
160+ ObjCBreakBeforeNestedBlockParam : true
98161ObjCSpaceAfterProperty : false
99162ObjCSpaceBeforeProtocolList : true
163+ PackConstructorInitializers : NextLine
100164PenaltyBreakAssignment : 2
101165PenaltyBreakBeforeFirstCallParameter : 1
102166PenaltyBreakComment : 300
103167PenaltyBreakFirstLessLess : 120
168+ PenaltyBreakOpenParenthesis : 0
104169PenaltyBreakString : 1000
105170PenaltyBreakTemplateDeclaration : 10
106171PenaltyExcessCharacter : 1000000
172+ PenaltyIndentedWhitespace : 0
107173PenaltyReturnTypeOnItsOwnLine : 200
108174PointerAlignment : Left
175+ PPIndentWidth : -1
176+ QualifierAlignment : Leave
109177RawStringFormats :
110178 - Language : Cpp
111179 Delimiters :
@@ -132,34 +200,72 @@ RawStringFormats:
132200 - PARSE_TEXT_PROTO
133201 - ParseTextOrDie
134202 - ParseTextProtoOrDie
135- CanonicalDelimiter : ' '
203+ - ParseTestProto
204+ - ParsePartialTestProto
205+ CanonicalDelimiter : pb
136206 BasedOnStyle : google
207+ ReferenceAlignment : Pointer
137208ReflowComments : true
209+ RemoveBracesLLVM : false
210+ RemoveParentheses : Leave
211+ RemoveSemicolon : false
212+ RequiresClausePosition : OwnLine
213+ RequiresExpressionIndentation : OuterScope
214+ SeparateDefinitionBlocks : Leave
215+ ShortNamespaceLines : 1
138216SortIncludes : false
139- SortUsingDeclarations : true
217+ SortJavaStaticImport : Before
218+ SortUsingDeclarations : LexicographicNumeric
140219SpaceAfterCStyleCast : false
141220SpaceAfterLogicalNot : false
142221SpaceAfterTemplateKeyword : true
222+ SpaceAroundPointerQualifiers : Default
143223SpaceBeforeAssignmentOperators : true
224+ SpaceBeforeCaseColon : false
144225SpaceBeforeCpp11BracedList : false
145226SpaceBeforeCtorInitializerColon : true
146227SpaceBeforeInheritanceColon : true
228+ SpaceBeforeJsonColon : false
147229SpaceBeforeParens : ControlStatements
230+ SpaceBeforeParensOptions :
231+ AfterControlStatements : true
232+ AfterForeachMacros : true
233+ AfterFunctionDefinitionName : false
234+ AfterFunctionDeclarationName : false
235+ AfterIfMacros : true
236+ AfterOverloadedOperator : false
237+ AfterRequiresInClause : false
238+ AfterRequiresInExpression : false
239+ BeforeNonEmptyParentheses : false
148240SpaceBeforeRangeBasedForLoopColon : true
241+ SpaceBeforeSquareBrackets : false
149242SpaceInEmptyBlock : false
150- SpaceInEmptyParentheses : false
151243SpacesBeforeTrailingComments : 2
152- SpacesInAngles : false
153- SpacesInConditionalStatement : false
244+ SpacesInAngles : Never
154245SpacesInContainerLiterals : true
155- SpacesInCStyleCastParentheses : false
156- SpacesInParentheses : false
246+ SpacesInLineCommentPrefix :
247+ Minimum : 1
248+ Maximum : -1
249+ SpacesInParens : Never
250+ SpacesInParensOptions :
251+ InCStyleCasts : false
252+ InConditionalStatements : false
253+ InEmptyParentheses : false
254+ Other : false
157255SpacesInSquareBrackets : false
158- SpaceBeforeSquareBrackets : false
159- Standard : c++17
256+ Standard : c++20
257+ StatementAttributeLikeMacros :
258+ - Q_EMIT
160259StatementMacros :
161260 - Q_UNUSED
162261 - QT_REQUIRE_VERSION
163262TabWidth : 8
164263UseTab : Never
264+ VerilogBreakBetweenInstancePorts : true
265+ WhitespaceSensitiveMacros :
266+ - BOOST_PP_STRINGIZE
267+ - CF_SWIFT_NAME
268+ - NS_SWIFT_NAME
269+ - PP_STRINGIZE
270+ - STRINGIZE
165271...
0 commit comments