|
|
@@ -0,0 +1,186 @@
|
|
|
+---
|
|
|
+Language: Cpp
|
|
|
+BasedOnStyle: LLVM
|
|
|
+AccessModifierOffset: -4
|
|
|
+AlignAfterOpenBracket: Align
|
|
|
+AlignArrayOfStructures: None
|
|
|
+AlignConsecutiveMacros: None
|
|
|
+AlignConsecutiveAssignments: None
|
|
|
+AlignConsecutiveBitFields: None
|
|
|
+AlignConsecutiveDeclarations: None
|
|
|
+AlignEscapedNewlines: DontAlign
|
|
|
+AlignOperands: Align
|
|
|
+AlignTrailingComments: false
|
|
|
+AllowAllArgumentsOnNextLine: false
|
|
|
+AllowAllParametersOfDeclarationOnNextLine: true
|
|
|
+AllowShortEnumsOnASingleLine: false
|
|
|
+AllowShortBlocksOnASingleLine: Never
|
|
|
+AllowShortCaseLabelsOnASingleLine: false
|
|
|
+AllowShortFunctionsOnASingleLine: None
|
|
|
+AllowShortLambdasOnASingleLine: Empty
|
|
|
+AllowShortIfStatementsOnASingleLine: Never
|
|
|
+AllowShortLoopsOnASingleLine: false
|
|
|
+AlwaysBreakAfterDefinitionReturnType: None
|
|
|
+AlwaysBreakAfterReturnType: None
|
|
|
+AlwaysBreakBeforeMultilineStrings: false
|
|
|
+AlwaysBreakTemplateDeclarations: Yes
|
|
|
+AttributeMacros:
|
|
|
+ - __capability
|
|
|
+BinPackArguments: true
|
|
|
+BinPackParameters: true
|
|
|
+BraceWrapping:
|
|
|
+ AfterCaseLabel: true
|
|
|
+ AfterClass: true
|
|
|
+ AfterControlStatement: true
|
|
|
+ AfterEnum: true
|
|
|
+ AfterFunction: true
|
|
|
+ AfterNamespace: false
|
|
|
+ AfterObjCDeclaration: true
|
|
|
+ AfterStruct: true
|
|
|
+ AfterUnion: true
|
|
|
+ AfterExternBlock: false
|
|
|
+ BeforeCatch: true
|
|
|
+ BeforeElse: true
|
|
|
+ BeforeLambdaBody: false
|
|
|
+ BeforeWhile: false
|
|
|
+ IndentBraces: false
|
|
|
+ SplitEmptyFunction: true
|
|
|
+ SplitEmptyRecord: true
|
|
|
+ SplitEmptyNamespace: true
|
|
|
+BreakBeforeBinaryOperators: NonAssignment
|
|
|
+BreakBeforeConceptDeclarations: true
|
|
|
+BreakBeforeBraces: Custom
|
|
|
+BreakBeforeInheritanceComma: false
|
|
|
+BreakInheritanceList: AfterColon
|
|
|
+BreakBeforeTernaryOperators: true
|
|
|
+#BreakConstructorInitializersBeforeComma: true
|
|
|
+BreakConstructorInitializers: BeforeColon
|
|
|
+BreakAfterJavaFieldAnnotations: false
|
|
|
+BreakStringLiterals: true
|
|
|
+ColumnLimit: 120
|
|
|
+CommentPragmas: '^ IWYU pragma:'
|
|
|
+QualifierAlignment: Leave
|
|
|
+CompactNamespaces: false
|
|
|
+ConstructorInitializerIndentWidth: 4
|
|
|
+ContinuationIndentWidth: 4
|
|
|
+Cpp11BracedListStyle: true
|
|
|
+DeriveLineEnding: true
|
|
|
+DerivePointerAlignment: false
|
|
|
+DisableFormat: false
|
|
|
+EmptyLineAfterAccessModifier: Never
|
|
|
+EmptyLineBeforeAccessModifier: LogicalBlock
|
|
|
+ExperimentalAutoDetectBinPacking: false
|
|
|
+PackConstructorInitializers: BinPack
|
|
|
+ConstructorInitializerAllOnOneLineOrOnePerLine: false
|
|
|
+AllowAllConstructorInitializersOnNextLine: false
|
|
|
+FixNamespaceComments: true
|
|
|
+ForEachMacros:
|
|
|
+ - foreach
|
|
|
+ - Q_FOREACH
|
|
|
+ - BOOST_FOREACH
|
|
|
+IfMacros:
|
|
|
+ - KJ_IF_MAYBE
|
|
|
+IncludeBlocks: Preserve
|
|
|
+IncludeCategories:
|
|
|
+ - Regex: '^"(llvm|llvm-c|clang|clang-c)/'
|
|
|
+ Priority: 2
|
|
|
+ SortPriority: 0
|
|
|
+ CaseSensitive: false
|
|
|
+ - Regex: '^(<|"(gtest|gmock|isl|json)/)'
|
|
|
+ Priority: 3
|
|
|
+ SortPriority: 0
|
|
|
+ CaseSensitive: false
|
|
|
+ - Regex: '.*'
|
|
|
+ Priority: 1
|
|
|
+ SortPriority: 0
|
|
|
+ CaseSensitive: false
|
|
|
+IncludeIsMainRegex: '(Test)?$'
|
|
|
+IncludeIsMainSourceRegex: ''
|
|
|
+IndentAccessModifiers: false
|
|
|
+IndentCaseLabels: false
|
|
|
+IndentCaseBlocks: false
|
|
|
+IndentGotoLabels: true
|
|
|
+IndentPPDirectives: AfterHash
|
|
|
+IndentExternBlock: NoIndent
|
|
|
+IndentRequires: false
|
|
|
+IndentWidth: 4
|
|
|
+IndentWrappedFunctionNames: false
|
|
|
+InsertTrailingCommas: None
|
|
|
+JavaScriptQuotes: Leave
|
|
|
+JavaScriptWrapImports: true
|
|
|
+KeepEmptyLinesAtTheStartOfBlocks: true
|
|
|
+LambdaBodyIndentation: Signature
|
|
|
+MacroBlockBegin: ''
|
|
|
+MacroBlockEnd: ''
|
|
|
+MaxEmptyLinesToKeep: 1
|
|
|
+NamespaceIndentation: None
|
|
|
+ObjCBinPackProtocolList: Auto
|
|
|
+ObjCBlockIndentWidth: 2
|
|
|
+ObjCBreakBeforeNestedBlockParam: true
|
|
|
+ObjCSpaceAfterProperty: false
|
|
|
+ObjCSpaceBeforeProtocolList: true
|
|
|
+PenaltyBreakAssignment: 2
|
|
|
+PenaltyBreakBeforeFirstCallParameter: 19
|
|
|
+PenaltyBreakComment: 300
|
|
|
+PenaltyBreakFirstLessLess: 120
|
|
|
+PenaltyBreakOpenParenthesis: 0
|
|
|
+PenaltyBreakString: 1000
|
|
|
+PenaltyBreakTemplateDeclaration: 10
|
|
|
+PenaltyExcessCharacter: 1000000
|
|
|
+PenaltyReturnTypeOnItsOwnLine: 60
|
|
|
+PenaltyIndentedWhitespace: 0
|
|
|
+PointerAlignment: Left
|
|
|
+PPIndentWidth: -1
|
|
|
+ReferenceAlignment: Pointer
|
|
|
+ReflowComments: true
|
|
|
+RemoveBracesLLVM: false
|
|
|
+SeparateDefinitionBlocks: Leave
|
|
|
+ShortNamespaceLines: 1
|
|
|
+SortIncludes: Never
|
|
|
+SortJavaStaticImport: Before
|
|
|
+SortUsingDeclarations: false
|
|
|
+SpaceAfterCStyleCast: false
|
|
|
+SpaceAfterLogicalNot: false
|
|
|
+SpaceAfterTemplateKeyword: false
|
|
|
+SpaceBeforeAssignmentOperators: true
|
|
|
+SpaceBeforeCaseColon: false
|
|
|
+SpaceBeforeCpp11BracedList: false
|
|
|
+SpaceBeforeCtorInitializerColon: false
|
|
|
+SpaceBeforeInheritanceColon: true
|
|
|
+SpaceBeforeParens: Never
|
|
|
+SpaceAroundPointerQualifiers: Default
|
|
|
+SpaceBeforeRangeBasedForLoopColon: true
|
|
|
+SpaceInEmptyBlock: false
|
|
|
+SpaceInEmptyParentheses: false
|
|
|
+SpacesBeforeTrailingComments: 1
|
|
|
+SpacesInAngles: Never
|
|
|
+SpacesInConditionalStatement: false
|
|
|
+SpacesInContainerLiterals: true
|
|
|
+SpacesInCStyleCastParentheses: false
|
|
|
+SpacesInLineCommentPrefix:
|
|
|
+ Minimum: 1
|
|
|
+ Maximum: -1
|
|
|
+SpacesInParentheses: false
|
|
|
+SpacesInSquareBrackets: false
|
|
|
+SpaceBeforeSquareBrackets: false
|
|
|
+BitFieldColonSpacing: Both
|
|
|
+Standard: Latest
|
|
|
+StatementAttributeLikeMacros:
|
|
|
+ - Q_EMIT
|
|
|
+StatementMacros:
|
|
|
+ - Q_UNUSED
|
|
|
+ - QT_REQUIRE_VERSION
|
|
|
+TabWidth: 4
|
|
|
+UseCRLF: false
|
|
|
+UseTab: ForContinuationAndIndentation
|
|
|
+WhitespaceSensitiveMacros:
|
|
|
+ - STRINGIZE
|
|
|
+ - PP_STRINGIZE
|
|
|
+ - BOOST_PP_STRINGIZE
|
|
|
+ - NS_SWIFT_NAME
|
|
|
+ - CF_SWIFT_NAME
|
|
|
+---
|
|
|
+Language: ObjC
|
|
|
+BasedOnStyle: Microsoft
|
|
|
+...
|
|
|
+
|