-
Notifications
You must be signed in to change notification settings - Fork 2
/
.clang-format
52 lines (51 loc) · 1.52 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
AlignTrailingComments : true
AllowAllParametersOfDeclarationOnNextLine : true
AllowShortBlocksOnASingleLine : false
AllowShortFunctionsOnASingleLine : "None"
AllowShortIfStatementsOnASingleLine : false
AllowShortLoopsOnASingleLine : false
AlwaysBreakBeforeMultilineStrings : true
BasedOnStyle : "Google"
BinPackParameters : false
BreakBeforeBinaryOperators : false
BreakBeforeBraces : "Custom"
BreakBeforeTernaryOperators : false
ColumnLimit : 0
ContinuationIndentWidth : 4
DerivePointerAlignment : false
DisableFormat : false
IndentCaseLabels : true
IndentWrappedFunctionNames : false
IndentWidth : 4
Language : "Cpp"
MaxEmptyLinesToKeep : 1
PointerBindsToType : false
SpaceBeforeAssignmentOperators : true
SpaceBeforeParens : "ControlStatements"
SpacesBeforeTrailingComments : 1
SpacesInCStyleCastParentheses : false
SpacesInParentheses : false
Standard : "Cpp03"
TabWidth : 1
UseTab : "Never"
AccessModifierOffset : -4
AllowShortFunctionsOnASingleLine : "Inline"
AlwaysBreakTemplateDeclarations : true
BreakConstructorInitializersBeforeComma : true
ConstructorInitializerAllOnOneLineOrOnePerLine : false
ConstructorInitializerIndentWidth : 0
Cpp11BracedListStyle : false
NamespaceIndentation : "None"
SpacesInAngles : false
KeepEmptyLinesAtTheStartOfBlocks: true
BraceWrapping:
AfterClass: true
AfterControlStatement: true
AfterEnum: true
AfterFunction: true
AfterNamespace: false
AfterObjCDeclaration: true
AfterStruct: true
AfterUnion: true
BeforeCatch: true
BeforeElse: true