-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-format
49 lines (38 loc) · 1.09 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
44
45
46
47
48
49
BasedOnStyle: LLVM
IndentWidth: 4
ColumnLimit: 100
UseTab: Never
BinPackArguments: true
BinPackParameters: true
DerivePointerAlignment: false
PointerAlignment: Left
AlignAfterOpenBracket: true
AlignConsecutiveAssignments: true
AlignConsecutiveDeclarations: true
AlignOperands: true
AlignTrailingComments: true
AllowShortBlocksOnASingleLine: false
AllowShortCaseLabelsOnASingleLine: true
AllowShortFunctionsOnASingleLine: true
ExperimentalAutoDetectBinPacking: false
AllowAllParametersOfDeclarationOnNextLine: false
BreakConstructorInitializersBeforeComma: true
NamespaceIndentation: All
AccessModifierOffset: -4
AlwaysBreakTemplateDeclarations: true
BreakBeforeBraces: Custom
BraceWrapping:
AfterClass: false
AfterControlStatement: false
AfterEnum : false
AfterFunction : false
AfterNamespace : false
AfterStruct : false
AfterUnion : false
BeforeCatch : true
BeforeElse : true
IndentBraces : false
AfterExternBlock : false
SplitEmptyFunction : false
SplitEmptyRecord : false
SplitEmptyNamespace : false