(274 lines)
1 ---2 Language: Cpp3 AccessModifierOffset: -24 AlignAfterOpenBracket: Align5 AlignArrayOfStructures: None6 AlignConsecutiveAssignments:7 Enabled: false8 AcrossEmptyLines: false9 AcrossComments: false10 AlignCompound: false11 AlignFunctionPointers: false12 PadOperators: true13 AlignConsecutiveBitFields:14 Enabled: false15 AcrossEmptyLines: false16 AcrossComments: false17 AlignCompound: false18 AlignFunctionPointers: false19 PadOperators: false20 AlignConsecutiveDeclarations:21 Enabled: false22 AcrossEmptyLines: false23 AcrossComments: false24 AlignCompound: false25 AlignFunctionPointers: false26 PadOperators: false27 AlignConsecutiveMacros:28 Enabled: false29 AcrossEmptyLines: false30 AcrossComments: false31 AlignCompound: false32 AlignFunctionPointers: false33 PadOperators: false34 AlignConsecutiveShortCaseStatements:35 Enabled: false36 AcrossEmptyLines: false37 AcrossComments: false38 AlignCaseArrows: false39 AlignCaseColons: false40 AlignConsecutiveTableGenBreakingDAGArgColons:41 Enabled: false42 AcrossEmptyLines: false43 AcrossComments: false44 AlignCompound: false45 AlignFunctionPointers: false46 PadOperators: false47 AlignConsecutiveTableGenCondOperatorColons:48 Enabled: false49 AcrossEmptyLines: false50 AcrossComments: false51 AlignCompound: false52 AlignFunctionPointers: false53 PadOperators: false54 AlignConsecutiveTableGenDefinitionColons:55 Enabled: false56 AcrossEmptyLines: false57 AcrossComments: false58 AlignCompound: false59 AlignFunctionPointers: false60 PadOperators: false61 AlignEscapedNewlines: Right62 AlignOperands: Align63 AlignTrailingComments:64 Kind: Never65 OverEmptyLines: 066 AllowAllArgumentsOnNextLine: true67 AllowAllParametersOfDeclarationOnNextLine: true68 AllowBreakBeforeNoexceptSpecifier: Never69 AllowShortBlocksOnASingleLine: Never70 AllowShortCaseExpressionOnASingleLine: true71 AllowShortCaseLabelsOnASingleLine: true72 AllowShortCompoundRequirementOnASingleLine: true73 AllowShortEnumsOnASingleLine: true74 AllowShortFunctionsOnASingleLine: false75 AllowShortIfStatementsOnASingleLine: AllIfsAndElse76 AllowShortLambdasOnASingleLine: All77 AllowShortLoopsOnASingleLine: false78 AlwaysBreakAfterDefinitionReturnType: None79 AlwaysBreakBeforeMultilineStrings: false80 AttributeMacros:81 - __capability82 BinPackArguments: true83 BinPackParameters: true84 BitFieldColonSpacing: Both85 BraceWrapping:86 AfterCaseLabel: false87 AfterClass: false88 AfterControlStatement: Never89 AfterEnum: false90 AfterExternBlock: false91 AfterFunction: false92 AfterNamespace: false93 AfterObjCDeclaration: false94 AfterStruct: false95 AfterUnion: false96 BeforeCatch: false97 BeforeElse: false98 BeforeLambdaBody: false99 BeforeWhile: false100 IndentBraces: false101 SplitEmptyFunction: true102 SplitEmptyRecord: true103 SplitEmptyNamespace: true104 BreakAdjacentStringLiterals: true105 BreakAfterAttributes: Leave106 BreakAfterJavaFieldAnnotations: false107 BreakAfterReturnType: None108 BreakArrays: true109 BreakBeforeBinaryOperators: NonAssignment110 BreakBeforeConceptDeclarations: Always111 BreakBeforeBraces: Attach112 BreakBeforeInlineASMColon: OnlyMultiline113 BreakBeforeTernaryOperators: true114 BreakConstructorInitializers: BeforeColon115 BreakFunctionDefinitionParameters: false116 BreakInheritanceList: BeforeColon117 BreakStringLiterals: true118 BreakTemplateDeclarations: MultiLine119 ColumnLimit: 120120 CommentPragmas: '^ IWYU pragma:'121 CompactNamespaces: false122 ConstructorInitializerIndentWidth: 4123 ContinuationIndentWidth: 4124 Cpp11BracedListStyle: true125 DerivePointerAlignment: false126 DisableFormat: false127 EmptyLineAfterAccessModifier: Never128 EmptyLineBeforeAccessModifier: LogicalBlock129 ExperimentalAutoDetectBinPacking: false130 FixNamespaceComments: true131 ForEachMacros:132 - foreach133 - Q_FOREACH134 - BOOST_FOREACH135 IfMacros:136 - KJ_IF_MAYBE137 IncludeBlocks: Preserve138 IncludeCategories:139 - Regex: '^"(llvm|llvm-c|clang|clang-c)/'140 Priority: 2141 SortPriority: 0142 CaseSensitive: false143 - Regex: '^(<|"(gtest|gmock|isl|json)/)'144 Priority: 3145 SortPriority: 0146 CaseSensitive: false147 - Regex: '.*'148 Priority: 1149 SortPriority: 0150 CaseSensitive: false151 IncludeIsMainRegex: '(Test)?$'152 IncludeIsMainSourceRegex: ''153 IndentAccessModifiers: false154 IndentCaseBlocks: false155 IndentCaseLabels: false156 IndentExternBlock: AfterExternBlock157 IndentGotoLabels: true158 IndentPPDirectives: None159 IndentRequiresClause: true160 IndentWidth: 4161 IndentWrappedFunctionNames: false162 InsertBraces: false163 InsertNewlineAtEOF: false164 InsertTrailingCommas: None165 IntegerLiteralSeparator:166 Binary: 0167 BinaryMinDigits: 0168 Decimal: 0169 DecimalMinDigits: 0170 Hex: 0171 HexMinDigits: 0172 JavaScriptQuotes: Leave173 JavaScriptWrapImports: true174 KeepEmptyLines:175 AtEndOfFile: false176 AtStartOfBlock: true177 AtStartOfFile: true178 LambdaBodyIndentation: Signature179 LineEnding: DeriveLF180 MacroBlockBegin: ''181 MacroBlockEnd: ''182 MainIncludeChar: Quote183 MaxEmptyLinesToKeep: 1184 NamespaceIndentation: None185 ObjCBinPackProtocolList: Auto186 ObjCBlockIndentWidth: 2187 ObjCBreakBeforeNestedBlockParam: true188 ObjCSpaceAfterProperty: false189 ObjCSpaceBeforeProtocolList: true190 PackConstructorInitializers: BinPack191 PenaltyBreakAssignment: 2192 PenaltyBreakBeforeFirstCallParameter: 19193 PenaltyBreakComment: 300194 PenaltyBreakFirstLessLess: 120195 PenaltyBreakOpenParenthesis: 0196 PenaltyBreakScopeResolution: 500197 PenaltyBreakString: 1000198 PenaltyBreakTemplateDeclaration: 10199 PenaltyExcessCharacter: 1000000200 PenaltyIndentedWhitespace: 0201 PenaltyReturnTypeOnItsOwnLine: 60202 PointerAlignment: Right203 PPIndentWidth: -1204 QualifierAlignment: Leave205 ReferenceAlignment: Pointer206 ReflowComments: true207 RemoveBracesLLVM: false208 RemoveParentheses: Leave209 RemoveSemicolon: false210 RequiresClausePosition: OwnLine211 RequiresExpressionIndentation: OuterScope212 SeparateDefinitionBlocks: Leave213 ShortNamespaceLines: 1214 SkipMacroDefinitionBody: false215 SortIncludes: CaseSensitive216 SortJavaStaticImport: Before217 SortUsingDeclarations: LexicographicNumeric218 SpaceAfterCStyleCast: false219 SpaceAfterLogicalNot: false220 SpaceAfterTemplateKeyword: true221 SpaceAroundPointerQualifiers: Default222 SpaceBeforeAssignmentOperators: true223 SpaceBeforeCaseColon: false224 SpaceBeforeCpp11BracedList: false225 SpaceBeforeCtorInitializerColon: true226 SpaceBeforeInheritanceColon: true227 SpaceBeforeJsonColon: false228 SpaceBeforeParens: ControlStatements229 SpaceBeforeParensOptions:230 AfterControlStatements: true231 AfterForeachMacros: true232 AfterFunctionDefinitionName: false233 AfterFunctionDeclarationName: false234 AfterIfMacros: true235 AfterOverloadedOperator: false236 AfterPlacementOperator: true237 AfterRequiresInClause: false238 AfterRequiresInExpression: false239 BeforeNonEmptyParentheses: false240 SpaceBeforeRangeBasedForLoopColon: true241 SpaceBeforeSquareBrackets: false242 SpaceInEmptyBlock: false243 SpacesBeforeTrailingComments: 1244 SpacesInAngles: Never245 SpacesInContainerLiterals: true246 SpacesInLineCommentPrefix:247 Minimum: 1248 Maximum: -1249 SpacesInParens: Never250 SpacesInParensOptions:251 ExceptDoubleParentheses: false252 InCStyleCasts: false253 InConditionalStatements: false254 InEmptyParentheses: false255 Other: false256 SpacesInSquareBrackets: false257 Standard: Latest258 StatementAttributeLikeMacros:259 - Q_EMIT260 StatementMacros:261 - Q_UNUSED262 - QT_REQUIRE_VERSION263 TableGenBreakInsideDAGArg: DontBreak264 TabWidth: 4265 UseTab: Never266 VerilogBreakBetweenInstancePorts: true267 WhitespaceSensitiveMacros:268 - BOOST_PP_STRINGIZE269 - CF_SWIFT_NAME270 - NS_SWIFT_NAME271 - PP_STRINGIZE272 - STRINGIZE273 ...