66 lines
1.5 KiB
YAML
66 lines
1.5 KiB
YAML
StatementMacros: [
|
|
'UPROPERTY',
|
|
'UFUNCTION',
|
|
'UCLASS',
|
|
'USTRUCT',
|
|
'UENUM',
|
|
'UINTERFACE',
|
|
'GENERATED_BODY'
|
|
]
|
|
Language: Cpp
|
|
BasedOnStyle: LLVM
|
|
|
|
AccessModifierOffset: -4
|
|
AlignAfterOpenBracket: Align
|
|
AlignConsecutiveAssignments: Consecutive
|
|
AlignConsecutiveDeclarations: Consecutive
|
|
AlignConsecutiveMacros: Consecutive
|
|
AlignEscapedNewlines: Left
|
|
AlignOperands: DontAlign
|
|
AlignTrailingComments: Always
|
|
AllowShortBlocksOnASingleLine: Empty
|
|
AllowShortEnumsOnASingleLine: false
|
|
AllowShortFunctionsOnASingleLine: Inline
|
|
AllowShortLambdasOnASingleLine: All
|
|
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
|
|
BreakBeforeBinaryOperators: NonAssignment
|
|
BreakBeforeBraces: Custom
|
|
BreakInheritanceList: AfterColon
|
|
BreakBeforeTernaryOperators: true
|
|
BreakConstructorInitializers: BeforeComma
|
|
BreakStringLiterals: false
|
|
ColumnLimit: 80
|
|
Cpp11BracedListStyle: true
|
|
EmptyLineBeforeAccessModifier: Always
|
|
IndentAccessModifiers: false
|
|
IndentCaseBlocks: false
|
|
IndentCaseLabels: false
|
|
IndentGotoLabels: false
|
|
IndentPPDirectives: None
|
|
IndentWidth: 4
|
|
InsertNewlineAtEOF: true
|
|
InsertTrailingCommas: None
|
|
MaxEmptyLinesToKeep: 1
|
|
NamespaceIndentation: None
|
|
PackConstructorInitializers: NextLineOnly
|
|
PointerAlignment: Left
|
|
SortIncludes: Never
|
|
SpaceBeforeCaseColon: false
|
|
TabWidth: 4
|
|
UseTab: Always
|