33 lines
863 B
YAML
33 lines
863 B
YAML
BasedOnStyle: LLVM
|
|
UseTab: Never
|
|
IndentWidth: 2
|
|
TabWidth: 2
|
|
BreakBeforeBraces: Custom
|
|
AllowShortFunctionsOnASingleLine: Empty
|
|
AllowShortIfStatementsOnASingleLine: false
|
|
AllowShortLambdasOnASingleLine: true
|
|
AllowAllArgumentsOnNextLine: true
|
|
IndentCaseLabels: true
|
|
AccessModifierOffset: -2
|
|
NamespaceIndentation: None
|
|
FixNamespaceComments: false
|
|
PackConstructorInitializers: Never
|
|
AlignAfterOpenBracket: AlwaysBreak
|
|
InsertBraces: true
|
|
BraceWrapping:
|
|
AfterClass: true # false
|
|
AfterControlStatement: false
|
|
AfterEnum: true # false
|
|
AfterFunction: true # false
|
|
AfterNamespace: false
|
|
AfterObjCDeclaration: true # false
|
|
AfterStruct: true # false
|
|
AfterUnion: true # false
|
|
AfterExternBlock: false
|
|
BeforeCatch: false
|
|
BeforeElse: false
|
|
IndentBraces: false
|
|
SplitEmptyFunction: true
|
|
SplitEmptyRecord: true
|
|
SplitEmptyNamespace: true
|
|
ColumnLimit: 140
|