-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-format
36 lines (36 loc) · 920 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
31
32
33
34
35
36
BasedOnStyle: Google
ColumnLimit: 100
IndentWidth: 4
AlignAfterOpenBracket: Align
BreakBeforeBraces: Custom
BraceWrapping:
AfterCaseLabel: false
AfterUnion: true
AfterEnum: true
AfterStruct: true
SplitEmptyFunction: true
AfterNamespace: true
AfterClass: true
AfterFunction: true
AfterControlStatement: MultiLine
BeforeElse : false
AllowShortIfStatementsOnASingleLine: false
IndentCaseLabels: false
DerivePointerAlignment: false
PointerAlignment: Left
AlignTrailingComments: true
AllowShortBlocksOnASingleLine: false
AlignConsecutiveDeclarations: false
AlignConsecutiveAssignments: false
AlignOperands: true
AllowAllParametersOfDeclarationOnNextLine: false
AllowAllArgumentsOnNextLine: true
AllowShortCaseLabelsOnASingleLine: false
BinPackArguments: false
BinPackParameters: false
AccessModifierOffset: -4
ReflowComments: false
SortIncludes: false
TabWidth: 4
UseTab: Never
NamespaceIndentation: Inner