43 lines
897 B
YAML
43 lines
897 B
YAML
BasedOnStyle: LLVM
|
|
|
|
# Include sorting and grouping
|
|
SortIncludes: CaseSensitive
|
|
IncludeBlocks: Preserve
|
|
IncludeCategories:
|
|
- Regex: '<Windows\.h>'
|
|
Priority: 1
|
|
- Regex: '<Psapi\.h>'
|
|
Priority: 2
|
|
- Regex: '"BlHooks\\.hpp"'
|
|
Priority: 3
|
|
- Regex: '"BlFuncs\\.hpp"'
|
|
Priority: 4
|
|
- Regex: ".*"
|
|
Priority: 5
|
|
|
|
# Indentation settings
|
|
IndentWidth: 2
|
|
UseTab: Never
|
|
IndentAccessModifiers: false
|
|
AccessModifierOffset: 0
|
|
NamespaceIndentation: All
|
|
|
|
# Line breaking and wrapping
|
|
ColumnLimit: 120
|
|
BreakBeforeTernaryOperators: false
|
|
BreakBeforeBinaryOperators: None
|
|
AlwaysBreakAfterReturnType: None
|
|
AlwaysBreakAfterDefinitionReturnType: None
|
|
|
|
# Alignment
|
|
AlignOperands: DontAlign
|
|
AlignAfterOpenBracket: AlwaysBreak
|
|
PointerAlignment: Left
|
|
|
|
# Parameter formatting
|
|
BinPackParameters: false
|
|
AllowAllParametersOfDeclarationOnNextLine: false
|
|
|
|
# Code organization
|
|
SeparateDefinitionBlocks: Always
|