mirror of
https://github.com/Naios/continuable.git
synced 2025-12-06 08:46:44 +08:00
39 lines
1.2 KiB
YAML
39 lines
1.2 KiB
YAML
BasedOnStyle: LLVM
|
|
|
|
AlignAfterOpenBracket: Align
|
|
AllowAllArgumentsOnNextLine: 'true'
|
|
AllowAllConstructorInitializersOnNextLine: 'true'
|
|
AllowAllParametersOfDeclarationOnNextLine: 'true'
|
|
AllowShortCaseLabelsOnASingleLine: 'false'
|
|
AllowShortFunctionsOnASingleLine: Empty
|
|
AllowShortLambdasOnASingleLine: Empty
|
|
AlwaysBreakTemplateDeclarations: 'Yes'
|
|
BinPackArguments: 'true'
|
|
BinPackParameters: 'true'
|
|
BreakConstructorInitializers: BeforeComma
|
|
BreakConstructorInitializersBeforeComma: 'true'
|
|
ConstructorInitializerIndentWidth: 2
|
|
FixNamespaceComments: 'true'
|
|
IndentCaseLabels: 'true'
|
|
IndentPPDirectives: AfterHash
|
|
PenaltyBreakAssignment: 1000
|
|
PenaltyBreakBeforeFirstCallParameter: 100
|
|
PointerAlignment: Left
|
|
|
|
MacroBlockBegin: "^CONTINUABLE_BLOCK_.*_BEGIN$"
|
|
MacroBlockEnd: "^CONTINUABLE_BLOCK_.*_END$"
|
|
|
|
IncludeCategories:
|
|
- Regex: '^<+[a-z_]+>'
|
|
Priority: 1
|
|
- Regex: '^<experimental/+[a-z_]+>'
|
|
Priority: 2
|
|
- Regex: '^<(gtest|function2)/.*\.(h|hpp)>'
|
|
Priority: 3
|
|
- Regex: '^<continuable/.*\.hpp>'
|
|
Priority: 4
|
|
- Regex: '^<.*'
|
|
Priority: 5
|
|
- Regex: '.*'
|
|
Priority: 6
|