forked from goldsborough/ipc-bench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-format
30 lines (27 loc) · 822 Bytes
/
.clang-format
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Language: Cpp
Standard: Cpp11
BasedOnStyle: Google
AllowAllParametersOfDeclarationOnNextLine: true
AllowShortBlocksOnASingleLine: false
AllowShortCaseLabelsOnASingleLine: true
AllowShortFunctionsOnASingleLine: false
AllowShortIfStatementsOnASingleLine: true
AllowShortLoopsOnASingleLine: true
BinPackArguments: false
BinPackParameters: false
BreakConstructorInitializersBeforeComma: true
ConstructorInitializerAllOnOneLineOrOnePerLine: true
ConstructorInitializerIndentWidth: 0
ContinuationIndentWidth: 4
Cpp11BracedListStyle: true
IndentCaseLabels: true
IndentWidth: 2
MaxEmptyLinesToKeep: 2
NamespaceIndentation: None
PointerAlignment: Left
SpacesBeforeTrailingComments: 0
TabWidth: 2
UseTab: Always
PenaltyExcessCharacter: 1000000
PenaltyReturnTypeOnItsOwnLine: 100000
PenaltyBreakBeforeFirstCallParameter: 10000000