13 lines
370 B
YAML
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 |