c-pong/.clang-format
2023-10-06 17:30:56 +02:00

13 lines
370 B
YAML

BasedOnStyle: Microsoft
# Specify column limit of 80, this way you can squize more terminals on screen
ColumnLimit: 80
# Pointers are part of the type not the variable name
PointerAlignment: Left
# Consecutive macros are more readable
AlignConsecutiveMacros: true
# It is more readable to have short {} statements on the same line
AllowShortBlocksOnASingleLine: true