58 lines
1.5 KiB
YAML
58 lines
1.5 KiB
YAML
BasedOnStyle: LLVM
|
|
AccessModifierOffset: -4
|
|
AlignAfterOpenBracket: Align
|
|
AlignArrayOfStructures: Left
|
|
AlignConsecutiveDeclarations:
|
|
Enabled: false
|
|
AcrossEmptyLines: false
|
|
AcrossComments: false
|
|
AlignConsecutiveAssignments:
|
|
Enabled: true
|
|
AcrossEmptyLines: false
|
|
AcrossComments: false
|
|
AlignCompound: true
|
|
PadOperators: true
|
|
AlignConsecutiveMacros:
|
|
Enabled: false
|
|
AcrossEmptyLines: false
|
|
AcrossComments: false
|
|
AlignOperands: Align
|
|
AllowAllParametersOfDeclarationOnNextLine: true
|
|
AllowAllArgumentsOnNextLine: false
|
|
AllowShortLambdasOnASingleLine: Empty
|
|
AllowShortFunctionsOnASingleLine: Empty
|
|
AllowShortBlocksOnASingleLine: Empty
|
|
AllowShortIfStatementsOnASingleLine: AllIfsAndElse
|
|
AllowShortLoopsOnASingleLine: true
|
|
AlwaysBreakAfterDefinitionReturnType: None
|
|
AlwaysBreakTemplateDeclarations: "Yes"
|
|
BinPackArguments: false
|
|
BinPackParameters: false
|
|
BreakBeforeBraces: Custom
|
|
BreakBeforeBinaryOperators: NonAssignment
|
|
ColumnLimit: 120
|
|
CommentPragmas: "^ IWYU pragma:"
|
|
ConstructorInitializerIndentWidth: 4
|
|
IndentWidth: 4
|
|
Language: Cpp
|
|
MaxEmptyLinesToKeep: 2
|
|
PointerAlignment: Left
|
|
TabWidth: 4
|
|
UseTab: Never
|
|
SortIncludes: CaseSensitive
|
|
BraceWrapping:
|
|
AfterEnum: true
|
|
AfterStruct: true
|
|
AfterClass: true
|
|
AfterUnion: true
|
|
AfterExternBlock: true
|
|
AfterFunction: true
|
|
AfterNamespace: true
|
|
IndentRequires: true
|
|
FixNamespaceComments: false
|
|
NamespaceIndentation: None
|
|
BreakBeforeConceptDeclarations: Always
|
|
RequiresClausePosition: OwnLine
|
|
IndentRequiresClause: true
|
|
AllowBreakBeforeNoexceptSpecifier: OnlyWithParen
|