72 lines
1.6 KiB
YAML
72 lines
1.6 KiB
YAML
---
|
|
Language: Cpp
|
|
BasedOnStyle: LLVM
|
|
AccessModifierOffset: -2
|
|
AlignConsecutiveAssignments:
|
|
Enabled: true
|
|
AlignConsecutiveDeclarations:
|
|
Enabled: true
|
|
AlignOperands: Align
|
|
AllowAllParametersOfDeclarationOnNextLine: false
|
|
AllowShortCaseLabelsOnASingleLine: true
|
|
AllowShortFunctionsOnASingleLine: Inline
|
|
AllowShortIfStatementsOnASingleLine: WithoutElse
|
|
BraceWrapping:
|
|
AfterCaseLabel: true
|
|
AfterClass: true
|
|
AfterControlStatement: true
|
|
AfterEnum: true
|
|
AfterFunction: true
|
|
AfterNamespace: true
|
|
AfterStruct: true
|
|
AfterUnion: true
|
|
AfterExternBlock: false
|
|
BeforeCatch: true
|
|
BeforeElse: true
|
|
BeforeLambdaBody: true
|
|
BeforeWhile: true
|
|
SplitEmptyFunction: true
|
|
SplitEmptyRecord: true
|
|
SplitEmptyNamespace: true
|
|
BreakBeforeBraces: Custom
|
|
BreakConstructorInitializers: BeforeComma
|
|
BreakTemplateDeclarations: Yes
|
|
ColumnLimit: 120
|
|
ConstructorInitializerIndentWidth: 2
|
|
Cpp11BracedListStyle: false
|
|
IncludeCategories:
|
|
- Regex: '^<.*'
|
|
Priority: 1
|
|
- Regex: '^".*'
|
|
Priority: 2
|
|
- Regex: '.*'
|
|
Priority: 3
|
|
IncludeIsMainRegex: '([-_](test|unittest))?$'
|
|
IndentAccessModifiers: false
|
|
IndentCaseBlocks: true
|
|
IndentWidth: 4
|
|
InsertNewlineAtEOF: true
|
|
MacroBlockBegin: ''
|
|
MacroBlockEnd: ''
|
|
NamespaceIndentation: All
|
|
ObjCSpaceAfterProperty: true
|
|
PenaltyBreakBeforeFirstCallParameter: 100
|
|
PenaltyBreakComment: 100
|
|
PenaltyBreakFirstLessLess: 0
|
|
PenaltyBreakString: 100
|
|
PenaltyExcessCharacter: 1
|
|
PenaltyReturnTypeOnItsOwnLine: 1000
|
|
PointerAlignment: Left
|
|
SortIncludes: CaseInsensitive
|
|
SpacesInAngles: Never
|
|
SpacesInContainerLiterals: false
|
|
Standard: Cpp11
|
|
StatementMacros:
|
|
- UPROPERTY
|
|
- UCLASS
|
|
- USTRUCT
|
|
- GENERATED_BODY
|
|
- UENUM
|
|
TabWidth: 4
|
|
...
|