[clang-format] Change SpaceInEmptyBlock=false

I love { } for empty blocks, but it looks like {} is too common among
developers now.
This commit is contained in:
David Capello 2024-12-12 19:20:05 -03:00
parent 28043e8305
commit 17bb11fc42

View File

@ -203,7 +203,7 @@ SpaceBeforeParensOptions:
BeforeNonEmptyParentheses: false BeforeNonEmptyParentheses: false
SpaceBeforeRangeBasedForLoopColon: true SpaceBeforeRangeBasedForLoopColon: true
SpaceBeforeSquareBrackets: false SpaceBeforeSquareBrackets: false
SpaceInEmptyBlock: true SpaceInEmptyBlock: false
SpacesBeforeTrailingComments: 1 SpacesBeforeTrailingComments: 1
SpacesInAngles: Never SpacesInAngles: Never
SpacesInContainerLiterals: false SpacesInContainerLiterals: false