2016-10-27 05:06:23 +08:00
|
|
|
---
|
|
|
|
# Language
|
|
|
|
Language: Cpp
|
|
|
|
Standard: Cpp11
|
|
|
|
|
|
|
|
# Indentation
|
|
|
|
IndentWidth: 4
|
|
|
|
ContinuationIndentWidth: 4
|
|
|
|
AccessModifierOffset: -4
|
2017-02-26 07:49:57 +08:00
|
|
|
IndentCaseLabels: false
|
2016-10-27 05:06:23 +08:00
|
|
|
NamespaceIndentation: None
|
|
|
|
|
|
|
|
# Spacing
|
|
|
|
UseTab: Never
|
|
|
|
SpaceBeforeParens: ControlStatements
|
|
|
|
SpacesBeforeTrailingComments: 1
|
|
|
|
SpaceInEmptyParentheses: false
|
|
|
|
SpacesInAngles: false
|
|
|
|
SpacesInParentheses: false
|
|
|
|
SpacesInSquareBrackets: false
|
|
|
|
SpacesInCStyleCastParentheses: false
|
|
|
|
SpaceBeforeAssignmentOperators: true
|
|
|
|
MaxEmptyLinesToKeep: 2
|
|
|
|
|
|
|
|
# Alignment
|
|
|
|
AlignAfterOpenBracket: Align
|
|
|
|
AlignConsecutiveAssignments: false
|
|
|
|
AlignConsecutiveDeclarations: false
|
|
|
|
AlignEscapedNewlinesLeft: true
|
|
|
|
AlignOperands: true
|
|
|
|
AlignTrailingComments: true
|
|
|
|
|
|
|
|
# Argument Packing
|
|
|
|
BinPackArguments: true
|
|
|
|
BinPackParameters: true
|
|
|
|
|
|
|
|
# Break handling
|
|
|
|
ColumnLimit: 100
|
2017-02-24 05:59:17 +08:00
|
|
|
BreakBeforeBraces: Mozilla
|
2016-10-27 05:06:23 +08:00
|
|
|
BreakBeforeBinaryOperators: NonAssignment
|
2017-02-26 02:03:23 +08:00
|
|
|
BreakConstructorInitializersBeforeComma: true
|
2016-10-27 05:06:23 +08:00
|
|
|
AlwaysBreakTemplateDeclarations: true
|
|
|
|
ConstructorInitializerAllOnOneLineOrOnePerLine: false
|
|
|
|
Cpp11BracedListStyle: true
|
|
|
|
|
|
|
|
# Break penalities
|
|
|
|
PenaltyBreakBeforeFirstCallParameter: 200
|
|
|
|
PenaltyBreakComment: 300
|
|
|
|
PenaltyBreakFirstLessLess: 120
|
|
|
|
PenaltyBreakString: 1000
|
|
|
|
PenaltyExcessCharacter: 5
|
|
|
|
PenaltyReturnTypeOnItsOwnLine: 60
|
|
|
|
|
|
|
|
# Includes
|
|
|
|
SortIncludes: true
|
|
|
|
IncludeCategories:
|
|
|
|
# Match local headers
|
|
|
|
- Regex: '^"[[:alnum:]_]+\.h"$'
|
|
|
|
Priority: 1
|
|
|
|
# Match project headers
|
|
|
|
- Regex: '^"[[:alnum:]_]+/.+\.h"$'
|
|
|
|
Priority: 2
|
|
|
|
# Match Qt headers
|
|
|
|
- Regex: '^<Q[[:alnum:]_/]+>$'
|
|
|
|
Priority: 3
|
|
|
|
# Match other headers
|
|
|
|
- Regex: '.*'
|
|
|
|
Priority: 4
|
|
|
|
|
|
|
|
# Short blocks
|
|
|
|
AllowShortBlocksOnASingleLine: false
|
|
|
|
AllowShortCaseLabelsOnASingleLine: false
|
|
|
|
AllowShortIfStatementsOnASingleLine: false
|
|
|
|
AllowShortLoopsOnASingleLine: false
|
|
|
|
AllowShortFunctionsOnASingleLine: Empty
|
|
|
|
|
|
|
|
# Set pointer format
|
|
|
|
DerivePointerAlignment: false
|
|
|
|
PointerAlignment: Left
|
|
|
|
...
|