Update .clang-format to avoid break after namespace

This commit is contained in:
Alexander Krotov
2018-07-12 15:16:35 +03:00
parent 6afd76fc8d
commit 9d6dbb8ac8

View File

@@ -18,7 +18,15 @@ AlwaysBreakTemplateDeclarations: true
BinPackArguments: true
BinPackParameters: true
BreakBeforeBinaryOperators: None
BreakBeforeBraces: GNU
BreakBeforeBraces: Custom
BraceWrapping:
AfterClass: true
AfterControlStatement: true
AfterFunction: true
AfterNamespace: false
AfterStruct: true
IndentBraces: true
BeforeElse: true
BreakBeforeTernaryOperators: true
BreakConstructorInitializersBeforeComma: false
ColumnLimit: 100