|
|
@@ -3,25 +3,29 @@ Language: Cpp
|
|
|
# BasedOnStyle: LLVM
|
|
|
AccessModifierOffset: -4
|
|
|
AlignAfterOpenBracket: Align
|
|
|
-AlignConsecutiveMacros: false
|
|
|
-AlignConsecutiveAssignments: false
|
|
|
-AlignConsecutiveDeclarations: false
|
|
|
+AlignConsecutiveMacros: None
|
|
|
+AlignConsecutiveAssignments: None
|
|
|
+AlignConsecutiveBitFields: None
|
|
|
+AlignConsecutiveDeclarations: None
|
|
|
AlignEscapedNewlines: DontAlign
|
|
|
-AlignOperands: true
|
|
|
+AlignOperands: Align
|
|
|
AlignTrailingComments: false
|
|
|
AllowAllArgumentsOnNextLine: false
|
|
|
AllowAllConstructorInitializersOnNextLine: true
|
|
|
AllowAllParametersOfDeclarationOnNextLine: true
|
|
|
+AllowShortEnumsOnASingleLine: false
|
|
|
AllowShortBlocksOnASingleLine: Never
|
|
|
AllowShortCaseLabelsOnASingleLine: false
|
|
|
AllowShortFunctionsOnASingleLine: None
|
|
|
-AllowShortLambdasOnASingleLine: All
|
|
|
+AllowShortLambdasOnASingleLine: Empty
|
|
|
AllowShortIfStatementsOnASingleLine: Never
|
|
|
AllowShortLoopsOnASingleLine: false
|
|
|
AlwaysBreakAfterDefinitionReturnType: None
|
|
|
AlwaysBreakAfterReturnType: None
|
|
|
AlwaysBreakBeforeMultilineStrings: false
|
|
|
AlwaysBreakTemplateDeclarations: Yes
|
|
|
+AttributeMacros:
|
|
|
+ - __capability
|
|
|
BinPackArguments: true
|
|
|
BinPackParameters: true
|
|
|
BraceWrapping:
|
|
|
@@ -30,18 +34,21 @@ BraceWrapping:
|
|
|
AfterControlStatement: true
|
|
|
AfterEnum: true
|
|
|
AfterFunction: true
|
|
|
- AfterNamespace: 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
|
|
|
@@ -60,30 +67,40 @@ Cpp11BracedListStyle: true
|
|
|
DeriveLineEnding: true
|
|
|
DerivePointerAlignment: false
|
|
|
DisableFormat: false
|
|
|
+EmptyLineBeforeAccessModifier: LogicalBlock
|
|
|
ExperimentalAutoDetectBinPacking: false
|
|
|
FixNamespaceComments: true
|
|
|
ForEachMacros:
|
|
|
- foreach
|
|
|
- Q_FOREACH
|
|
|
- BOOST_FOREACH
|
|
|
+StatementAttributeLikeMacros:
|
|
|
+ - Q_EMIT
|
|
|
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: ''
|
|
|
IndentCaseLabels: false
|
|
|
+IndentCaseBlocks: false
|
|
|
IndentGotoLabels: true
|
|
|
IndentPPDirectives: AfterHash
|
|
|
+IndentExternBlock: NoIndent
|
|
|
+IndentRequires: false
|
|
|
IndentWidth: 4
|
|
|
IndentWrappedFunctionNames: false
|
|
|
+InsertTrailingCommas: None
|
|
|
JavaScriptQuotes: Leave
|
|
|
JavaScriptWrapImports: true
|
|
|
KeepEmptyLinesAtTheStartOfBlocks: true
|
|
|
@@ -93,6 +110,7 @@ MaxEmptyLinesToKeep: 1
|
|
|
NamespaceIndentation: None
|
|
|
ObjCBinPackProtocolList: Auto
|
|
|
ObjCBlockIndentWidth: 2
|
|
|
+ObjCBreakBeforeNestedBlockParam: true
|
|
|
ObjCSpaceAfterProperty: false
|
|
|
ObjCSpaceBeforeProtocolList: true
|
|
|
PenaltyBreakAssignment: 2
|
|
|
@@ -103,18 +121,22 @@ PenaltyBreakString: 1000
|
|
|
PenaltyBreakTemplateDeclaration: 10
|
|
|
PenaltyExcessCharacter: 1000000
|
|
|
PenaltyReturnTypeOnItsOwnLine: 60
|
|
|
+PenaltyIndentedWhitespace: 0
|
|
|
PointerAlignment: Left
|
|
|
ReflowComments: true
|
|
|
SortIncludes: true
|
|
|
+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
|
|
|
@@ -126,6 +148,7 @@ SpacesInCStyleCastParentheses: false
|
|
|
SpacesInParentheses: false
|
|
|
SpacesInSquareBrackets: false
|
|
|
SpaceBeforeSquareBrackets: false
|
|
|
+BitFieldColonSpacing: Both
|
|
|
Standard: Latest
|
|
|
StatementMacros:
|
|
|
- Q_UNUSED
|
|
|
@@ -133,5 +156,11 @@ StatementMacros:
|
|
|
TabWidth: 4
|
|
|
UseCRLF: false
|
|
|
UseTab: ForContinuationAndIndentation
|
|
|
+WhitespaceSensitiveMacros:
|
|
|
+ - STRINGIZE
|
|
|
+ - PP_STRINGIZE
|
|
|
+ - BOOST_PP_STRINGIZE
|
|
|
+ - NS_SWIFT_NAME
|
|
|
+ - CF_SWIFT_NAME
|
|
|
...
|
|
|
|