diff options
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/.clang-format b/.clang-format index 3266955..064fa96 100644 --- a/.clang-format +++ b/.clang-format @@ -1,11 +1,10 @@ --- AccessModifierOffset: -4 -AlignConsecutiveAssignments: true AllowShortIfStatementsOnASingleLine: AllIfsAndElse AllowShortLoopsOnASingleLine: true BasedOnStyle: LLVM BreakBeforeBraces: Attach -ColumnLimit: 180 +ColumnLimit: 80 EmptyLineBeforeAccessModifier: Always IndentAccessModifiers: false IndentCaseLabels: true @@ -14,6 +13,13 @@ Language: Cpp Standard: Cpp11 TabWidth: 4 UseTab: Always +PointerAlignment: Middle +SpaceAfterCStyleCast: true +AlignConsecutiveAssignments: + Enabled: false +AlignTrailingComments: + Kind: Leave +ReflowComments: false ... -# vim: ft=yaml
\ No newline at end of file +# vim: ft=yaml |