60 lines
1.7 KiB
YAML
60 lines
1.7 KiB
YAML
BasedOnStyle: llvm
|
|
---
|
|
AccessModifierOffset: -4
|
|
AlignEscapedNewlines: DontAlign
|
|
AllowShortBlocksOnASingleLine: Always
|
|
AllowShortCompoundRequirementOnASingleLine: true
|
|
AllowShortEnumsOnASingleLine: true
|
|
AllowShortFunctionsOnASingleLine: Empty
|
|
AllowShortIfStatementsOnASingleLine: WithoutElse
|
|
AllowShortLambdasOnASingleLine: All
|
|
AllowShortLoopsOnASingleLine: true
|
|
AlwaysBreakTemplateDeclarations: Yes
|
|
BreakBeforeBinaryOperators: NonAssignment
|
|
BreakBeforeConceptDeclarations: Always
|
|
BreakBeforeTernaryOperators: true
|
|
ColumnLimit: 0
|
|
DerivePointerAlignment: false
|
|
IncludeCategories:
|
|
- Regex: '<[[:alnum:]_]+>'
|
|
Priority: 1
|
|
- Regex: '<(gtest|gmock)/'
|
|
Priority: 2
|
|
- Regex: '<[[:alnum:]_./]+>'
|
|
Priority: 3
|
|
- Regex: '<entt/'
|
|
Priority: 4
|
|
- Regex: '.*'
|
|
Priority: 5
|
|
IncludeIsMainRegex: "^$"
|
|
IndentPPDirectives: AfterHash
|
|
IndentRequiresClause: false
|
|
IndentWidth: 4
|
|
KeepEmptyLinesAtTheStartOfBlocks: false
|
|
Language: Cpp
|
|
PointerAlignment: Right
|
|
RequiresClausePosition: OwnLine
|
|
RequiresExpressionIndentation: OuterScope
|
|
SpaceAfterCStyleCast: false
|
|
SpaceAfterTemplateKeyword: false
|
|
SpaceAroundPointerQualifiers: After
|
|
SpaceBeforeCaseColon: false
|
|
SpaceBeforeCtorInitializerColon: false
|
|
SpaceBeforeInheritanceColon: false
|
|
SpaceBeforeParens: Custom
|
|
SpaceBeforeParensOptions:
|
|
AfterControlStatements: false
|
|
AfterForeachMacros: false
|
|
AfterFunctionDeclarationName: false
|
|
AfterFunctionDefinitionName: false
|
|
AfterIfMacros: false
|
|
AfterOverloadedOperator: false
|
|
AfterPlacementOperator: false
|
|
AfterRequiresInClause: true
|
|
AfterRequiresInExpression: false
|
|
BeforeNonEmptyParentheses: false
|
|
SpaceBeforeRangeBasedForLoopColon: false
|
|
Standard: Latest
|
|
TabWidth: 4
|
|
UseTab: Never
|