Files
valgrind/.clang-format
2023-04-17 22:05:30 +02:00

18 lines
499 B
YAML

---
Language: Cpp
BasedOnStyle: LLVM
AlignConsecutiveAssignments: true
AlignConsecutiveDeclarations: true
AlignConsecutiveMacros: true
AllowAllParametersOfDeclarationOnNextLine: true
BinPackParameters: false
BreakBeforeBraces: Linux
ContinuationIndentWidth: 3
IndentWidth: 3
PointerAlignment: Left
# Mark the VG_(), ML_() and tool macros as type declarations which they are
# sufficiently close to, otherwise clang-format gets confused by them.
TypenameMacros: [VG_, ML_, CLG_, DRD_, HG_, MC_]
...