diff options
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.clang-format b/.clang-format index 0565d7379e..86d562e74e 100644 --- a/.clang-format +++ b/.clang-format @@ -2,9 +2,11 @@ Standard: Cpp11 IndentWidth: 4 AccessModifierOffset: -4 UseTab: Never -BinPackParameters: true +BinPackParameters: false AllowShortIfStatementsOnASingleLine: false AllowShortLoopsOnASingleLine: false +AllowShortBlocksOnASingleLine: false +AllowShortFunctionsOnASingleLine: false ConstructorInitializerAllOnOneLineOrOnePerLine: true AlwaysBreakTemplateDeclarations: true NamespaceIndentation: None @@ -12,5 +14,5 @@ PointerBindsToType: false SpacesInParentheses: false BreakBeforeBraces: Attach ColumnLimit: 100 -Cpp11BracedListStyle: true +Cpp11BracedListStyle: false SpacesBeforeTrailingComments: 1 |