-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-format
78 lines (69 loc) · 2.1 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
71
72
73
74
75
76
77
78
# https://clang.llvm.org/docs/ClangFormatStyleOptions.html
# The .clang-format file uses YAML format:
# Example of usage:
BreakBeforeBraces: Custom
BraceWrapping:
AfterEnum: true
AfterStruct: false
SplitEmptyFunction: false
AlwaysBreakBeforeMultilineStrings : false
AlwaysBreakTemplateDeclarations : true
#指针左右
SpaceBeforeAssignmentOperators : true
# 允许case在同一行
AllowShortCaseLabelsOnASingleLine: true
# 允许if在同一行
AllowShortIfStatementsOnASingleLine: false
# 允许while在同一行
AllowShortLoopsOnASingleLine: false
# 每行字符的限制,0表示没有限制
ColumnLimit: 120
#短内容不分行
AllowShortBlocksOnASingleLine: false
SpacesBeforeTrailingComments : 1
ContinuationIndentWidth: 4
#基于那个配置文件
BasedOnStyle: LLVM
#指针的*的挨着哪边
PointerAlignment: Right
#缩进宽度
IndentWidth: 4
# 连续的空行保留几行
MaxEmptyLinesToKeep: 1
# 在 @property 后面添加空格, \@property (readonly) 而不是 \@property(readonly).
ObjCSpaceAfterProperty: true
# OC block后面的缩进
ObjCBlockIndentWidth: 4
# 是否允许短方法单行
AllowShortFunctionsOnASingleLine: true
# 是否允许短if单行 If true, if (a) return; 可以放到同一行
AllowShortIfStatementsOnASingleLine: true
#注释对齐
AlignTrailingComments: true
# 换行的时候对齐操作符
AlignOperands: false
# 中括号两边空格 []
SpacesInSquareBrackets: false
# 小括号两边添加空格
SpacesInParentheses : false
#多行声明语句按照=对齐
AlignConsecutiveDeclarations: false
#连续的赋值语句以 = 为中心对齐
AlignConsecutiveAssignments: false
#等号两边的空格
SpaceBeforeAssignmentOperators: true
# 容器类的空格 例如 OC的字典
SpacesInContainerLiterals: true
#缩进
IndentWrappedFunctionNames: true
#在block从空行开始
KeepEmptyLinesAtTheStartOfBlocks: true
#在构造函数初始化时按逗号断行,并以冒号对齐
BreakConstructorInitializersBeforeComma: true
#函数参数换行
AllowAllParametersOfDeclarationOnNextLine: true
#括号后添加空格
SpaceAfterCStyleCast: true
#tab键盘的宽度
TabWidth: 4
#UseTab: Never