-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-format
71 lines (57 loc) · 1.63 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
Language: Cpp
BasedOnStyle: LLVM
IndentWidth: 4
BreakBeforeBraces: Custom
TabWidth: 4
AllowShortFunctionsOnASingleLine: true
AlignArrayOfStructures: Right
IndentPPDirectives: BeforeHash
# 大括号换行,只有当 BreakBeforeBraces 设置为Custom时才有效
BraceWrapping:
# case 语句后面
AfterCaseLabel: true
# class定义后面
AfterClass: true
# 控制语句后面
AfterControlStatement: MultiLine
# enum定义后面
AfterEnum: true
# 函数定义后面
AfterFunction: true
# 命名空间定义后面
AfterNamespace: false
# ObjC定义后面
AfterObjCDeclaration: false
# struct定义后面
AfterStruct: false
# union定义后面
AfterUnion: true
# extern 导出块后面
AfterExternBlock: false
# catch之前
BeforeCatch: true
# else之前
BeforeElse: true
# 缩进大括号(整个大括号框起来的部分都缩进)
IndentBraces: false
# 空函数的大括号是否可以在一行
SplitEmptyFunction: true
# 空记录体(struct/class/union)的大括号是否可以在一行
SplitEmptyRecord: false
# 空名字空间的大括号是否可以在一行
SplitEmptyNamespace: true
# 连续赋值时,对齐所有等号
AlignConsecutiveAssignments: true
# 连续声明时,对齐所有声明的变量名
AlignConsecutiveDeclarations: true
# 保留在块开始处的空行
KeepEmptyLinesAtTheStartOfBlocks: true
# 连续空行的最大数量
MaxEmptyLinesToKeep: 3
# 保留pulic、private后的空行
EmptyLineAfterAccessModifier: Leave
# 在一个注释中引入换行的penalty
PenaltyBreakComment: 300
# 每行字符的限制,0表示没有限制
ColumnLimit: 0
Standard: Auto