-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-format
50 lines (49 loc) · 2.35 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
#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-
Language : Cpp
BasedOnStyle : Google
Standard : Auto
#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-
AccessModifierOffset : -4
AlignTrailingComments:
Kind : Always
OverEmptyLines : 2
AllowAllParametersOfDeclarationOnNextLine : false
AllowShortBlocksOnASingleLine : true
AllowShortFunctionsOnASingleLine : true
AllowShortIfStatementsOnASingleLine : false
AllowShortLoopsOnASingleLine : false
BinPackParameters : false
BraceWrapping:
AfterClass : true
AfterControlStatement : true
AfterEnum : true
AfterFunction : true
AfterObjCDeclaration : true
AfterStruct : true
AfterUnion : true
AfterNamespace : false
BeforeCatch : true
BeforeElse : true
IndentBraces : false
BreakBeforeBraces : Allman
BreakBeforeTernaryOperators : false
BreakConstructorInitializersBeforeComma : true
ColumnLimit : 120
Cpp11BracedListStyle : true
DerivePointerAlignment : true
DerivePointerBinding : false
IndentCaseLabels : true
IndentPPDirectives : AfterHash
IndentWidth : 4
KeepEmptyLinesAtTheStartOfBlocks : true
MaxEmptyLinesToKeep : 2
NamespaceIndentation : All
PointerBindsToType : true
PPIndentWidth : 4
SortIncludes : false
SpacesBeforeTrailingComments : 1
SpacesInAngles : false
SpacesInSquareBrackets : false
TabWidth : 4
UseTab : ForIndentation
#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-