Files
bar/.clang-format

22 lines
554 B
YAML

BasedOnStyle: LLVM
IndentWidth: 4
AlignConsecutiveAssignments: true
AlignEscapedNewlines: Left
AlignTrailingComments: Always
BreakBeforeBraces: Allman
ColumnLimit: 0
MaxEmptyLinesToKeep: 1
InsertNewlineAtEOF: true
BreakBeforeBinaryOperators: NonAssignment
BinPackArguments: false
PenaltyBreakBeforeFirstCallParameter: 1000
ContinuationIndentWidth: 4 # Adjust the indent width for continuation lines
IncludeCategories:
- Regex: '^(<.+>)$'
Priority: 1
- Regex: '^"(.+\.hpp)"$'
Priority: 2
- Regex: '.*'
Priority: 3
IncludeBlocks: Regroup