diff options
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.clang-format b/.clang-format index c7d6b0a..2f7e218 100644 --- a/.clang-format +++ b/.clang-format @@ -1,14 +1,17 @@ --- AccessModifierOffset: 0 +AlignConsecutiveAssignments: true +AllowShortIfStatementsOnASingleLine: WithoutElse +AllowShortLoopsOnASingleLine: true BasedOnStyle: LLVM BreakBeforeBraces: Attach ColumnLimit: 100 +IndentCaseLabels: true IndentWidth: '4' Language: Cpp Standard: Cpp11 TabWidth: '4' UseTab: Always -IndentCaseLabels: true ... # vim: ft=yaml |