narc/.clang-format
2024-12-27 00:06:09 -08:00

33 lines
680 B
YAML

---
BasedOnStyle: LLVM
Language: Cpp
AlignConsecutiveMacros: Consecutive
AlignOperands: false
BraceWrapping:
AfterCaseLabel: false
AfterClass: false
AfterControlStatement: Never
AfterEnum: false
AfterFunction: true
AfterStruct: false
AfterUnion: false
BeforeElse: false
BeforeWhile: false
IndentBraces: false
SplitEmptyFunction: true
SplitEmptyRecord: false
BreakBeforeBinaryOperators: All
BreakBeforeBraces: Custom
ColumnLimit: 0
ContinuationIndentWidth: 4
IncludeBlocks: Preserve
IncludeCategories:
- Regex: "<[[:alnum:].]+>"
Priority: 1
- Regex: ".*"
Priority: 2
IndentCaseLabels: false
IndentWidth: 4
InsertNewlineAtEOF: true
UseTab: Never