-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-format
63 lines (52 loc) · 1.32 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
BasedOnStyle: LLVM
IndentWidth: 4
---
Language: Cpp
Standard: Cpp11
ColumnLimit: 120
PointerAlignment: Left
DerivePointerAlignment: false
IndentCaseLabels: false
AlignAfterOpenBracket: true
AlignTrailingComments: true
AlignOperands: true
AccessModifierOffset: -4
BreakInheritanceList: BeforeComma
BreakConstructorInitializers: BeforeComma
AlwaysBreakTemplateDeclarations: Yes
# InsertTrailingCommas: Wrapped
IndentWidth: 4
TabWidth: 4
UseTab: Never
FixNamespaceComments: true
MaxEmptyLinesToKeep: 2
BreakBeforeBraces: Custom
BraceWrapping:
AfterControlStatement: true
AfterEnum: true
BeforeElse: true
AfterUnion: true
AfterClass: true
AfterStruct: true
AfterFunction: true
AfterNamespace: true
SplitEmptyRecord: true
AfterExternBlock: true
SplitEmptyFunction: true
SplitEmptyNamespace: true
AllowShortIfStatementsOnASingleLine: false
AllowShortFunctionsOnASingleLine: false
AllowShortEnumsOnASingleLine: false
AllowShortCaseLabelsOnASingleLine: false
AllowShortBlocksOnASingleLine: false
AllowShortLoopsOnASingleLine: false
SpaceBeforeAssignmentOperators: true
SpaceBeforeParens: ControlStatements
SpaceInEmptyParentheses: false
SpacesBeforeTrailingComments: 1
SpacesInAngles: false
SpacesInSquareBrackets: false
SpacesInParentheses: false
SpaceBeforeCtorInitializerColon: true
SpaceBeforeInheritanceColon: true