c-pong/.clang-format

13 lines
370 B
Plaintext
Raw Normal View History

2023-10-06 15:30:56 +00:00
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