diff options
-rw-r--r-- | ClangFormat/.clang-format | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ClangFormat/.clang-format b/ClangFormat/.clang-format index 9b7219c..20c4e46 100644 --- a/ClangFormat/.clang-format +++ b/ClangFormat/.clang-format @@ -1,17 +1,15 @@ # .clang-format -*- mode: yaml; lexical-binding: t; -*- -BasedOnStyle: LLVM -IndentWidth: 2 AccessModifierOffset: -2 AlignAfterOpenBracket: Align AlignConsecutiveAssignments: true AlignConsecutiveBitFields: true AlignConsecutiveMacros: true AlignEscapedNewlines: true -AllowShortLoopsOnASingleLine: false AllowShortFunctionsOnASingleLine: false AllowShortLambdasOnASingleLine: false +AllowShortLoopsOnASingleLine: false AlwaysBreakTemplateDeclarations: Yes -NamespaceIndentation: All +BasedOnStyle: LLVM BreakBeforeBraces: Custom BraceWrapping: AfterEnum: true @@ -27,3 +25,6 @@ BraceWrapping: BeforeElse: true SplitEmptyFunction: true IndentBraces: false +ColumnLimit: 80 +IndentWidth: 2 +NamespaceIndentation: All |