73 lines
1.8 KiB
YAML
73 lines
1.8 KiB
YAML
---
|
|
BasedOnStyle: Microsoft
|
|
AlignAfterOpenBracket: AlwaysBreak
|
|
AlignConsecutiveAssignments:
|
|
Enabled: true
|
|
AcrossEmptyLines: true
|
|
AlignCompound: true
|
|
AlignFunctionPointers: true
|
|
AlignConsecutiveDeclarations:
|
|
Enabled: true
|
|
AcrossEmptyLines: true
|
|
AlignCompound: true
|
|
AlignFunctionPointers: true
|
|
PadOperators: true
|
|
AlignOperands: true
|
|
AlignTrailingComments:
|
|
OverEmptyLines: 2
|
|
AllowShortIfStatementsOnASingleLine: true
|
|
AllowShortLoopsOnASingleLine: true
|
|
AlwaysBreakAfterDefinitionReturnType: false
|
|
AlwaysBreakTemplateDeclarations: Yes
|
|
BinPackArguments: false
|
|
BinPackParameters: false
|
|
BraceWrapping:
|
|
AfterCaseLabel: true
|
|
AfterClass: true
|
|
AfterControlStatement: true
|
|
AfterEnum: true
|
|
AfterFunction: true
|
|
AfterNamespace: true
|
|
AfterObjCDeclaration: true
|
|
AfterStruct: true
|
|
AfterUnion: true
|
|
AfterExternBlock: true
|
|
BeforeCatch: true
|
|
BeforeElse: true
|
|
BeforeLambdaBody: true
|
|
BeforeWhile: true
|
|
IndentBraces: false
|
|
SplitEmptyFunction: false
|
|
SplitEmptyRecord: false
|
|
SplitEmptyNamespace: false
|
|
BreakConstructorInitializers: BeforeComma
|
|
ConstructorInitializerIndentWidth: 2
|
|
Cpp11BracedListStyle: false
|
|
IncludeCategories:
|
|
- Regex: ^<.*
|
|
Priority: 1
|
|
- Regex: ^".*
|
|
Priority: 2
|
|
- Regex: .*
|
|
Priority: 3
|
|
IncludeIsMainRegex: ([-_](test|unittest))?$
|
|
IndentCaseLabels: true
|
|
IndentWidth: 2
|
|
InsertNewlineAtEOF: true
|
|
MaxEmptyLinesToKeep: 2
|
|
PointerAlignment: Left
|
|
SpaceBeforeParensOptions:
|
|
AfterOverloadedOperator: true
|
|
SpacesInAngles: false
|
|
SpacesInParens: Custom
|
|
SpacesInParensOptions:
|
|
InConditionalStatements: true
|
|
InCStyleCasts: true
|
|
Other: true
|
|
TabWidth: 2
|
|
Language: Cpp
|
|
ConstructorInitializerAllOnOneLineOrOnePerLine: true
|
|
SpaceInEmptyParentheses: false
|
|
SpacesInConditionalStatement: true
|
|
SpacesInCStyleCastParentheses: false
|
|
AlignArrayOfStructures: Right |