-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-format
45 lines (43 loc) · 1.07 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
---
Language: Cpp
BasedOnStyle: Mozilla
UseTab: Never
IndentWidth: 4
ColumnLimit: 100
DerivePointerAlignment: false
PointerAlignment: Left
AlignAfterOpenBracket: BlockIndent
AlignConsecutiveMacros: AcrossEmptyLines
AlignConsecutiveAssignments: AcrossEmptyLines
AlignConsecutiveBitFields: AcrossEmptyLines
AlignConsecutiveDeclarations: AcrossEmptyLines
AlignEscapedNewlines: Left
AlignTrailingComments: true
AlwaysBreakTemplateDeclarations: Yes
AlwaysBreakAfterDefinitionReturnType: None
AlwaysBreakAfterReturnType: None
SortUsingDeclarations: true
SortIncludes: Never
FixNamespaceComments: true
BraceWrapping:
AfterExternBlock: false
AfterClass: true
AfterControlStatement: Never
AfterEnum: true
AfterNamespace: false
AfterFunction: true
AfterStruct: true
AfterUnion: true
AfterObjCDeclaration: true
BeforeCatch: false
BeforeElse: false
BeforeWhile: false
BeforeLambdaBody: false
IndentBraces: false
AfterCaseLabel: false
SplitEmptyFunction: false
SplitEmptyNamespace: false
SplitEmptyRecord: false
BreakBeforeBraces: Custom
IndentExternBlock: NoIndent
---