forked from finos/SymphonyMediaBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-format
43 lines (43 loc) · 1.27 KB
/
.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
31
32
33
34
35
36
37
38
39
40
41
42
43
IndentWidth: 4
BreakBeforeBraces: Custom
AccessModifierOffset: -4
PointerAlignment: Left
ConstructorInitializerAllOnOneLineOrOnePerLine: true
ColumnLimit: 120
FixNamespaceComments: true
BraceWrapping:
AfterUnion: true
AfterClass: true
AfterStruct: true
AfterCaseLabel: true
AfterNamespace: true
AfterEnum: true
AfterControlStatement: Always
AfterFunction: true
BeforeElse: true
BeforeCatch: true
AlwaysBreakTemplateDeclarations: Yes
BinPackArguments: false
BinPackParameters: false
AllowAllArgumentsOnNextLine: false
AllowShortBlocksOnASingleLine: Empty
BreakConstructorInitializers: BeforeColon
BreakInheritanceList: BeforeColon
BreakStringLiterals: true
NamespaceIndentation: None
SortIncludes: true
AlignAfterOpenBracket: DontAlign
AlignConsecutiveAssignments: false
AlignConsecutiveDeclarations: false
AlignConsecutiveMacros: false
AlignOperands: DontAlign
AlignTrailingComments: false
AllowAllConstructorInitializersOnNextLine: false
AllowAllParametersOfDeclarationOnNextLine: false
AllowShortCaseLabelsOnASingleLine: false
AllowShortEnumsOnASingleLine: true
AllowShortFunctionsOnASingleLine: Inline
AllowShortIfStatementsOnASingleLine: Never
AllowShortLambdasOnASingleLine: Inline
AllowShortLoopsOnASingleLine: false
PenaltyReturnTypeOnItsOwnLine: 1000