-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathclang-format
More file actions
62 lines (62 loc) · 1.77 KB
/
clang-format
File metadata and controls
62 lines (62 loc) · 1.77 KB
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
Language: Cpp
BasedOnStyle: webkit
Standard : Latest
SortIncludes : false
AccessModifierOffset : -4
AllowAllArgumentsOnNextLine : true
AllowAllConstructorInitializersOnNextLine : true
AllowShortLambdasOnASingleLine : true
AllowShortCaseLabelsOnASingleLine : true
AllowShortEnumsOnASingleLine : true
AllowShortBlocksOnASingleLine : true
AllowShortLoopsOnASingleLine : true
AllowShortFunctionsOnASingleLine : Inline
AllowShortIfStatementsOnASingleLine : WithoutElse
AlwaysBreakTemplateDeclarations : true
PointerAlignment : Middle
AlignTrailingComments: true
AlignArrayOfStructures: Left
#AlignConsecutiveAssignments: Consecutive
BinPackArguments : false
FixNamespaceComments : true
NamespaceIndentation : Inner
SpaceInEmptyParentheses : false
SpaceInEmptyBlock : false
SpacesInConditionalStatement : true
SpacesInParentheses : true
SpacesInContainerLiterals : true
SpaceBeforeAssignmentOperators : true
SpaceBeforeInheritanceColon : true
SpaceBeforeCtorInitializerColon : true
SpaceBeforeRangeBasedForLoopColon : true
SpaceBeforeCaseColon: true
SpaceBeforeCpp11BracedList: true
IndentCaseBlocks : false
IndentCaseLabels : true
IndentGotoLabels: false
BreakBeforeBinaryOperators : All
BreakConstructorInitializers : BeforeColon
CompactNamespaces: false
IndentPPDirectives: AfterHash
#BreakBeforeBraces : Mozilla
BreakBeforeBraces : Custom
BraceWrapping:
AfterEnum: false
AfterClass: true
AfterStruct: false
AfterUnion: false
AfterFunction: true
AfterExternBlock: false
AfterCaseLabel: false
AfterControlStatement: Never
BeforeCatch: false
BeforeElse: false
BeforeLambdaBody: false
BeforeWhile: false
IndentBraces: false
SplitEmptyFunction: false
SplitEmptyRecord: false
SplitEmptyNamespace: false
PointerAlignment : Middle
ReferenceAlignment : Middle
Cpp11BracedListStyle : false