Skip to content
Snippets Groups Projects
Commit 3ef61814 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[clang-format] use correct one

The original one was not the one from dune-xt-common
parent 84e5a492
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
# #
# http://llvm.org/releases/3.8.0/tools/clang/docs/ClangFormatStyleOptions.html # http://llvm.org/releases/3.8.0/tools/clang/docs/ClangFormatStyleOptions.html
AlignAfterOpenBracket: true AlignAfterOpenBracket: true
AlignConsecutiveAssignments: false AlignConsecutiveAssignments: true
AlignEscapedNewlinesLeft: false AlignEscapedNewlinesLeft: false
AlignOperands: true AlignOperands: true
AlignTrailingComments: false AlignTrailingComments: false
...@@ -18,12 +18,11 @@ AllowShortFunctionsOnASingleLine: Empty ...@@ -18,12 +18,11 @@ AllowShortFunctionsOnASingleLine: Empty
AllowShortIfStatementsOnASingleLine: false AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false AllowShortLoopsOnASingleLine: false
AlwaysBreakAfterDefinitionReturnType: None AlwaysBreakAfterDefinitionReturnType: None
AlwaysBreakAfterReturnType: None
AlwaysBreakBeforeMultilineStrings: false AlwaysBreakBeforeMultilineStrings: false
AlwaysBreakTemplateDeclarations: true AlwaysBreakTemplateDeclarations: true
BasedOnStyle: Mozilla BasedOnStyle: Mozilla
BinPackArguments: false BinPackArguments: false
BinPackParameters: false # this applies to template arguments BinPackParameters: true # this applies to template arguments, function arguments and typedefs, so we cannot set this to false (very much unfortunately)!
BreakBeforeBinaryOperators: NonAssignment BreakBeforeBinaryOperators: NonAssignment
BreakBeforeBraces: Mozilla BreakBeforeBraces: Mozilla
BreakBeforeTernaryOperators: true BreakBeforeTernaryOperators: true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment