Unverified Commit 4d62ea98 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

add clang-format configuration file for the unittest tree

parent d84b4a3f
Loading
Loading
Loading
Loading

unittest/.clang-format

0 → 100644
+22 −0
Original line number Diff line number Diff line
---
Language:        Cpp
BasedOnStyle:  LLVM
AccessModifierOffset: -4
AlignEscapedNewlines: Left
AllowShortFunctionsOnASingleLine: Inline
AllowShortLambdasOnASingleLine: None
AllowShortIfStatementsOnASingleLine: WithoutElse
BraceWrapping:
  AfterFunction:   true
BreakBeforeBraces: Custom
BreakInheritanceList: AfterColon
BreakConstructorInitializers: AfterColon
ColumnLimit:     100
IndentCaseLabels: true
IndentWidth:     4
ObjCBlockIndentWidth: 4
PenaltyBreakAssignment: 4
Standard:        Cpp11
TabWidth:        4
UseTab:          Never
...