|
@@ -3,6 +3,7 @@ Language: Cpp
|
|
|
BasedOnStyle: LLVM
|
|
BasedOnStyle: LLVM
|
|
|
AccessModifierOffset: -4
|
|
AccessModifierOffset: -4
|
|
|
AlignAfterOpenBracket: Align
|
|
AlignAfterOpenBracket: Align
|
|
|
|
|
+AlignArrayOfStructures: None
|
|
|
AlignConsecutiveMacros: None
|
|
AlignConsecutiveMacros: None
|
|
|
AlignConsecutiveAssignments: None
|
|
AlignConsecutiveAssignments: None
|
|
|
AlignConsecutiveBitFields: None
|
|
AlignConsecutiveBitFields: None
|
|
@@ -11,7 +12,6 @@ AlignEscapedNewlines: DontAlign
|
|
|
AlignOperands: Align
|
|
AlignOperands: Align
|
|
|
AlignTrailingComments: false
|
|
AlignTrailingComments: false
|
|
|
AllowAllArgumentsOnNextLine: false
|
|
AllowAllArgumentsOnNextLine: false
|
|
|
-AllowAllConstructorInitializersOnNextLine: true
|
|
|
|
|
AllowAllParametersOfDeclarationOnNextLine: true
|
|
AllowAllParametersOfDeclarationOnNextLine: true
|
|
|
AllowShortEnumsOnASingleLine: false
|
|
AllowShortEnumsOnASingleLine: false
|
|
|
AllowShortBlocksOnASingleLine: Never
|
|
AllowShortBlocksOnASingleLine: Never
|
|
@@ -59,23 +59,27 @@ BreakAfterJavaFieldAnnotations: false
|
|
|
BreakStringLiterals: true
|
|
BreakStringLiterals: true
|
|
|
ColumnLimit: 120
|
|
ColumnLimit: 120
|
|
|
CommentPragmas: '^ IWYU pragma:'
|
|
CommentPragmas: '^ IWYU pragma:'
|
|
|
|
|
+QualifierAlignment: Leave
|
|
|
CompactNamespaces: false
|
|
CompactNamespaces: false
|
|
|
-ConstructorInitializerAllOnOneLineOrOnePerLine: false
|
|
|
|
|
ConstructorInitializerIndentWidth: 4
|
|
ConstructorInitializerIndentWidth: 4
|
|
|
ContinuationIndentWidth: 4
|
|
ContinuationIndentWidth: 4
|
|
|
Cpp11BracedListStyle: true
|
|
Cpp11BracedListStyle: true
|
|
|
DeriveLineEnding: true
|
|
DeriveLineEnding: true
|
|
|
DerivePointerAlignment: false
|
|
DerivePointerAlignment: false
|
|
|
DisableFormat: false
|
|
DisableFormat: false
|
|
|
|
|
+EmptyLineAfterAccessModifier: Never
|
|
|
EmptyLineBeforeAccessModifier: LogicalBlock
|
|
EmptyLineBeforeAccessModifier: LogicalBlock
|
|
|
ExperimentalAutoDetectBinPacking: false
|
|
ExperimentalAutoDetectBinPacking: false
|
|
|
|
|
+PackConstructorInitializers: BinPack
|
|
|
|
|
+ConstructorInitializerAllOnOneLineOrOnePerLine: false
|
|
|
|
|
+AllowAllConstructorInitializersOnNextLine: false
|
|
|
FixNamespaceComments: true
|
|
FixNamespaceComments: true
|
|
|
ForEachMacros:
|
|
ForEachMacros:
|
|
|
- foreach
|
|
- foreach
|
|
|
- Q_FOREACH
|
|
- Q_FOREACH
|
|
|
- BOOST_FOREACH
|
|
- BOOST_FOREACH
|
|
|
-StatementAttributeLikeMacros:
|
|
|
|
|
- - Q_EMIT
|
|
|
|
|
|
|
+IfMacros:
|
|
|
|
|
+ - KJ_IF_MAYBE
|
|
|
IncludeBlocks: Preserve
|
|
IncludeBlocks: Preserve
|
|
|
IncludeCategories:
|
|
IncludeCategories:
|
|
|
- Regex: '^"(llvm|llvm-c|clang|clang-c)/'
|
|
- Regex: '^"(llvm|llvm-c|clang|clang-c)/'
|
|
@@ -92,6 +96,7 @@ IncludeCategories:
|
|
|
CaseSensitive: false
|
|
CaseSensitive: false
|
|
|
IncludeIsMainRegex: '(Test)?$'
|
|
IncludeIsMainRegex: '(Test)?$'
|
|
|
IncludeIsMainSourceRegex: ''
|
|
IncludeIsMainSourceRegex: ''
|
|
|
|
|
+IndentAccessModifiers: false
|
|
|
IndentCaseLabels: false
|
|
IndentCaseLabels: false
|
|
|
IndentCaseBlocks: false
|
|
IndentCaseBlocks: false
|
|
|
IndentGotoLabels: true
|
|
IndentGotoLabels: true
|
|
@@ -104,6 +109,7 @@ InsertTrailingCommas: None
|
|
|
JavaScriptQuotes: Leave
|
|
JavaScriptQuotes: Leave
|
|
|
JavaScriptWrapImports: true
|
|
JavaScriptWrapImports: true
|
|
|
KeepEmptyLinesAtTheStartOfBlocks: true
|
|
KeepEmptyLinesAtTheStartOfBlocks: true
|
|
|
|
|
+LambdaBodyIndentation: Signature
|
|
|
MacroBlockBegin: ''
|
|
MacroBlockBegin: ''
|
|
|
MacroBlockEnd: ''
|
|
MacroBlockEnd: ''
|
|
|
MaxEmptyLinesToKeep: 1
|
|
MaxEmptyLinesToKeep: 1
|
|
@@ -117,14 +123,20 @@ PenaltyBreakAssignment: 2
|
|
|
PenaltyBreakBeforeFirstCallParameter: 19
|
|
PenaltyBreakBeforeFirstCallParameter: 19
|
|
|
PenaltyBreakComment: 300
|
|
PenaltyBreakComment: 300
|
|
|
PenaltyBreakFirstLessLess: 120
|
|
PenaltyBreakFirstLessLess: 120
|
|
|
|
|
+PenaltyBreakOpenParenthesis: 0
|
|
|
PenaltyBreakString: 1000
|
|
PenaltyBreakString: 1000
|
|
|
PenaltyBreakTemplateDeclaration: 10
|
|
PenaltyBreakTemplateDeclaration: 10
|
|
|
PenaltyExcessCharacter: 1000000
|
|
PenaltyExcessCharacter: 1000000
|
|
|
PenaltyReturnTypeOnItsOwnLine: 60
|
|
PenaltyReturnTypeOnItsOwnLine: 60
|
|
|
PenaltyIndentedWhitespace: 0
|
|
PenaltyIndentedWhitespace: 0
|
|
|
PointerAlignment: Left
|
|
PointerAlignment: Left
|
|
|
|
|
+PPIndentWidth: -1
|
|
|
|
|
+ReferenceAlignment: Pointer
|
|
|
ReflowComments: true
|
|
ReflowComments: true
|
|
|
-SortIncludes: false
|
|
|
|
|
|
|
+RemoveBracesLLVM: false
|
|
|
|
|
+SeparateDefinitionBlocks: Leave
|
|
|
|
|
+ShortNamespaceLines: 1
|
|
|
|
|
+SortIncludes: Never
|
|
|
SortJavaStaticImport: Before
|
|
SortJavaStaticImport: Before
|
|
|
SortUsingDeclarations: false
|
|
SortUsingDeclarations: false
|
|
|
SpaceAfterCStyleCast: false
|
|
SpaceAfterCStyleCast: false
|
|
@@ -141,15 +153,20 @@ SpaceBeforeRangeBasedForLoopColon: true
|
|
|
SpaceInEmptyBlock: false
|
|
SpaceInEmptyBlock: false
|
|
|
SpaceInEmptyParentheses: false
|
|
SpaceInEmptyParentheses: false
|
|
|
SpacesBeforeTrailingComments: 1
|
|
SpacesBeforeTrailingComments: 1
|
|
|
-SpacesInAngles: false
|
|
|
|
|
|
|
+SpacesInAngles: Never
|
|
|
SpacesInConditionalStatement: false
|
|
SpacesInConditionalStatement: false
|
|
|
SpacesInContainerLiterals: true
|
|
SpacesInContainerLiterals: true
|
|
|
SpacesInCStyleCastParentheses: false
|
|
SpacesInCStyleCastParentheses: false
|
|
|
|
|
+SpacesInLineCommentPrefix:
|
|
|
|
|
+ Minimum: 1
|
|
|
|
|
+ Maximum: -1
|
|
|
SpacesInParentheses: false
|
|
SpacesInParentheses: false
|
|
|
SpacesInSquareBrackets: false
|
|
SpacesInSquareBrackets: false
|
|
|
SpaceBeforeSquareBrackets: false
|
|
SpaceBeforeSquareBrackets: false
|
|
|
BitFieldColonSpacing: Both
|
|
BitFieldColonSpacing: Both
|
|
|
Standard: Latest
|
|
Standard: Latest
|
|
|
|
|
+StatementAttributeLikeMacros:
|
|
|
|
|
+ - Q_EMIT
|
|
|
StatementMacros:
|
|
StatementMacros:
|
|
|
- Q_UNUSED
|
|
- Q_UNUSED
|
|
|
- QT_REQUIRE_VERSION
|
|
- QT_REQUIRE_VERSION
|
|
@@ -164,6 +181,6 @@ WhitespaceSensitiveMacros:
|
|
|
- CF_SWIFT_NAME
|
|
- CF_SWIFT_NAME
|
|
|
---
|
|
---
|
|
|
Language: ObjC
|
|
Language: ObjC
|
|
|
-BasedOnStyle: Mozilla
|
|
|
|
|
|
|
+BasedOnStyle: Microsoft
|
|
|
...
|
|
...
|
|
|
|
|
|