-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-format
52 lines (44 loc) · 1.25 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
---
BasedOnStyle: Chromium
###################################
# 缩进配置
###################################
UseTab: Always
IndentWidth: 4
TabWidth: 4
BreakBeforeBraces: Allman
ColumnLimit: 0
AccessModifierOffset: -4
NamespaceIndentation: All
FixNamespaceComments: false
###################################
# 其他样式选项
###################################
# 对齐连续的尾随的注释
AlignTrailingComments: true
# 允许函数声明的所有参数在放在下一行
AllowAllParametersOfDeclarationOnNextLine: true
# 允许短的块放在同一行
AllowShortBlocksOnASingleLine: true
# 允许短的case标签放在同一行
AllowShortCaseLabelsOnASingleLine: false
# 允许短的 if 语句保持在同一行
AllowShortIfStatementsOnASingleLine: true
# 允许短的循环保持在同一行
AllowShortLoopsOnASingleLine: true
# 允许短的块保持在同一行
AllowShortBlocksOnASingleLine: true
# 缩进 case 标签
IndentCaseLabels: true
# 允许排序 #include
SortIncludes: false
# 对齐宏定义
# AlignConsecutiveMacros: AcrossEmptyLinesAndComments
BreakBeforeBraces: Custom
Cpp11BracedListStyle: false
BraceWrapping:
AfterEnum: true
AfterStruct: false
SplitEmptyFunction: false
AfterFunction: false
AfterNamespace: false