|
@@ -1,10 +1,10 @@
|
|
|
---
|
|
|
Language: Cpp
|
|
|
AccessModifierOffset: -2
|
|
|
-AlignAfterOpenBracket: true
|
|
|
+AlignAfterOpenBracket: Align
|
|
|
AlignConsecutiveAssignments: false
|
|
|
AlignConsecutiveDeclarations: false
|
|
|
-AlignEscapedNewlinesLeft: false
|
|
|
+AlignEscapedNewlines: Right
|
|
|
AlignOperands: true
|
|
|
AlignTrailingComments: true
|
|
|
AllowAllParametersOfDeclarationOnNextLine: true
|
|
@@ -31,14 +31,20 @@ BraceWrapping:
|
|
|
BeforeCatch: true
|
|
|
BeforeElse: true
|
|
|
IndentBraces: false
|
|
|
+ SplitEmptyFunction: true
|
|
|
+ SplitEmptyRecord: true
|
|
|
+ SplitEmptyNamespace: true
|
|
|
BreakBeforeBinaryOperators: None
|
|
|
BreakBeforeBraces: Stroustrup
|
|
|
+BreakBeforeInheritanceComma: false
|
|
|
BreakBeforeTernaryOperators: true
|
|
|
BreakConstructorInitializersBeforeComma: false
|
|
|
+BreakConstructorInitializers: BeforeColon
|
|
|
BreakAfterJavaFieldAnnotations: false
|
|
|
BreakStringLiterals: true
|
|
|
ColumnLimit: 80
|
|
|
CommentPragmas: '^ IWYU pragma:'
|
|
|
+CompactNamespaces: false
|
|
|
ConstructorInitializerAllOnOneLineOrOnePerLine: true
|
|
|
ConstructorInitializerIndentWidth: 4
|
|
|
ContinuationIndentWidth: 4
|
|
@@ -46,7 +52,11 @@ Cpp11BracedListStyle: true
|
|
|
DerivePointerAlignment: false
|
|
|
DisableFormat: false
|
|
|
ExperimentalAutoDetectBinPacking: false
|
|
|
-ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
|
|
|
+FixNamespaceComments: true
|
|
|
+ForEachMacros:
|
|
|
+ - foreach
|
|
|
+ - Q_FOREACH
|
|
|
+ - BOOST_FOREACH
|
|
|
IncludeCategories:
|
|
|
- Regex: '^"(llvm|llvm-c|clang|clang-c)/'
|
|
|
Priority: 2
|
|
@@ -68,6 +78,7 @@ NamespaceIndentation: None
|
|
|
ObjCBlockIndentWidth: 2
|
|
|
ObjCSpaceAfterProperty: false
|
|
|
ObjCSpaceBeforeProtocolList: true
|
|
|
+PenaltyBreakAssignment: 2
|
|
|
PenaltyBreakBeforeFirstCallParameter: 19
|
|
|
PenaltyBreakComment: 300
|
|
|
PenaltyBreakFirstLessLess: 120
|
|
@@ -77,7 +88,9 @@ PenaltyReturnTypeOnItsOwnLine: 60
|
|
|
PointerAlignment: Left
|
|
|
ReflowComments: true
|
|
|
SortIncludes: false
|
|
|
+SortUsingDeclarations: true
|
|
|
SpaceAfterCStyleCast: false
|
|
|
+SpaceAfterTemplateKeyword: true
|
|
|
SpaceBeforeAssignmentOperators: true
|
|
|
SpaceBeforeParens: ControlStatements
|
|
|
SpaceInEmptyParentheses: false
|