-
Notifications
You must be signed in to change notification settings - Fork 2
/
_clang-format_backup
80 lines (72 loc) · 2.09 KB
/
_clang-format_backup
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# BasedOnStyle: WebKit
AccessModifierOffset: -4
AlignAfterOpenBracket: BAS_Align
AlignConsecutiveAssignments: true
AlignConsecutiveDeclarations: false
AlignEscapedNewlinesLeft: false
AlignTrailingComments: false
AlignOperands: false
AllowAllParametersOfDeclarationOnNextLine: true
AllowShortFunctionsOnASingleLine: SFS_All
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
AlwaysBreakAfterDefinitionReturnType: DRTBS_None
AlwaysBreakAfterReturnType: RTBS_NONE
AlwaysBreakBeforeMultilineStrings: false
AlwaysBreakTemplateDeclarations: true
BinPackArguments: true
BinPackParameters: true
#Only used if BreakBeforeBraces is Costum
BraceWrapping:
{
AfterClass: true
AfterControlStatement: false
AfterEnum : true
AfterFunction : true
AfterNamespace : true
AfterStruct : true
AfterUnion : true
BeforeCatch : true
BeforeElse : true
IndentBraces : false
}
BreakBeforeBinaryOperators: BOS_None
BreakBeforeBraces: BS_Custom
BreakBeforeTernaryOperators : false
BreakConstructorInitializersBeforeComma : true
BreakStringLiterals : true
ColumnLimit : 400
ConstructorInitializerAllOnOneLineOrOnePerLine : false
ConstructorInitializerIndentWidth : 4
ContinuationIndentWidth: 4
Cpp11BracedListStyle: true
DerivePointerBinding: true
IndentCaseLabels: false
Language : LK_Cpp
MaxEmptyLinesToKeep: 1
NamespaceIndentation: NI_All
ObjCSpaceBeforeProtocolList: true
PenaltyBreakBeforeFirstCallParameter: 19
PenaltyBreakComment: 60
PenaltyBreakString: 1000
PenaltyBreakFirstLessLess: 120
PenaltyExcessCharacter: 1000000
PenaltyReturnTypeOnItsOwnLine: 60
PointerAlignment: PAS_Left
PointerBindsToType: true
ReflowComments : false
SpaceAfterCStyleCast : true
SpaceAfterTemplateKeyword : true
SpaceBeforeAssignmentOperators : true
SpaceBeforeParens : SBPO_ControlStatements
SpaceInEmptyParentheses : false
SpacesBeforeTrailingComments: 1
SpacesInAngles : false
SpacesInCStyleCastParentheses : false
SpacesInContainerLiterals : false
SpacesInParentheses : false
SpacesInSquareBrackets : false
Standard: LS_Cpp11
TabWidth: 8
UseTab: UT_Never
SpaceAfterControlStatementKeyword: true