2021-08-19 21:33:20 +02:00
|
|
|
# vim: ft=yaml
|
|
|
|
---
|
|
|
|
BasedOnStyle: LLVM
|
|
|
|
IndentWidth: 4
|
|
|
|
---
|
|
|
|
Language: Cpp
|
|
|
|
# Force pointers to the type for C++.
|
|
|
|
DerivePointerAlignment: false
|
|
|
|
PointerAlignment: Left
|
|
|
|
|
|
|
|
# Short functions should not be on a single line, unless empty
|
|
|
|
AllowShortFunctionsOnASingleLine: Empty
|
2021-08-20 02:09:24 +02:00
|
|
|
|
|
|
|
# Make them level
|
|
|
|
AccessModifierOffset: -4
|
2021-08-21 00:31:40 +02:00
|
|
|
|
|
|
|
# It makes more sense this way
|
|
|
|
BreakBeforeBinaryOperators: All
|
|
|
|
BreakBeforeTernaryOperators: true
|
|
|
|
|
|
|
|
# Aesthetic
|
|
|
|
AlignOperands: AlignAfterOperator
|
2021-08-19 21:33:20 +02:00
|
|
|
---
|