-
Notifications
You must be signed in to change notification settings - Fork 1
/
.clang-tidy
180 lines (180 loc) · 7.91 KB
/
.clang-tidy
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
Checks: '*,-abseil-*,-boost-*,-darwin-*,-fuchsia-*,-google-objc-*,-google-uild-using-namespace,-google-upgrade-googletest-case,-mpi-*,-objc-*,-openmp-*,-cert-err58-cpp,-clang-analyzer-osx.*,-clang-analyzer-optin.osx.*,-modernize-use-trailing-return-type,-modernize-use-transparent-functors,-readability-uppercase-literal-suffix,-cppcoreguidelines-pro-bounds-constant-array-index,-cert-dcl21-cpp,-misc-non-private-member-variables-in-classes,-google-runtime-references,-hicpp-uppercase-literal-suffix,-llvmlibc-*,-altera-unroll-loops,-*-pro-type-union-access,-*-pro-bounds-pointer-arithmetic,-altera-id-dependent-backward-branch,-altera-struct-pack-align,-hicpp-named-parameter,-readability-named-parameter,-cppcoreguidelines-avoid-do-while,-cppcoreguidelines-avoid-magic-numbers,-readability-magic-numbers,-bugprone-easily-swappable-parameters'
CheckOptions:
- key: bugprone-assert-side-effect.CheckFunctionCalls
value: 'true'
- key: bugprone-dangling-handle.HandleClasses
value: 'std::string_view;std:basic_string_view'
- key: bugprone-sizeof-expression.WarnOnSizeOfIntegerExpression
value: '1'
- key: bugprone-string-constructor.LargeLengthThreshold
value: '0x8000'
- key: bugprone-suspicious-enum-usage.StrictMode
value: '1'
- key: bugprone-suspicious-missing-comma.SizeThreshold
value: '3'
- key: bugprone-unhandled-self-assignment.WarnOnlyIfThisHasSuspiciousField
value: '1'
- key: cppcoreguidelines-narrowing-conversions.PedanticMode
value: '1'
- key: cppcoreguidelines-no-malloc.Allocations
value: '::malloc;::calloc;::new;::new[]'
- key: cppcoreguidelines-no-malloc.Deallocations
value: '::free;::delete;::delete[]'
- key: cppcoreguidelines-pro-type-member-init.UseAssignment
value: '0'
- key: cppcoreguidelines-special-member-functions.AllowSoleDefaultDtor
value: '1'
- key: google-runtime-int.UnsignedTypePrefix
value: 'std::uint'
- key: google-runtime-int.SignedTypePrefix
value: 'std::int'
- key: google-runtime-int.TypeSuffix
value: '_t'
- key: hicpp-signed-bitwise.IgnorePositiveIntegerLiterals
value: 'true'
- key: llvm-namespace-comment.ShortNamespaceLines
value: '15'
- key: modernize-use-auto.MinTypeNameLength
value: 12
- key: performance-faster-string-find.StringLikeClasses
value: 'std::basic_string;std::basic_string_view'
- key: performance-inefficient-string-concatenation.StrictMode
value: '1'
- key: readability-function-size.LineThreshold
value: '60'
- key: readability-function-size.StatementThreshold
value: '50'
- key: readability-function-size.BranchThreshold
value: '15'
- key: readability-function-size.ParameterThreshold
value: '8'
- key: readability-function-size.NestingThreshold
value: '5'
- key: readability-function-size.VariableThreshold
value: '10'
- key: readability-identifier-length.MinimumVariableNameLength
value: '2'
- key: readability-identifier-length.MinimumParameterNameLength
value: '1'
- key: readability-identifier-length.MinimumLoopCounterNameLength
value: '1'
- key: readability-identifier-length.MinimumExceptionNameLength
value: '1'
- key: readability-identifier-naming.AbstractClassCase
value: 'lower_case'
- key: readability-identifier-naming.AbstractClassSuffix
value: '_interface'
- key: readability-identifier-naming.ClassCase
value: 'lower_case'
- key: readability-identifier-naming.ClassConstantCase
value: 'UPPER_CASE'
- key: readability-identifier-naming.ClassMemberCase
value: 'lower_case'
- key: readability-identifier-naming.ClassMemberPrefix
value: 'm_'
- key: readability-identifier-naming.ClassMethodCase
value: 'lower_case'
- key: readability-identifier-naming.ConstantCase
value: 'aNy_CaSe'
- key: readability-identifier-naming.ConstantMemberCase
value: 'lower_case'
- key: readability-identifier-naming.ConstantParameterCase
value: 'lower_case'
- key: readability-identifier-naming.ConstantPointerParameterCase
value: 'lower_case'
- key: readability-identifier-naming.ConstexprFunctionCase
value: 'lower_case'
- key: readability-identifier-naming.ConstexprMethodCase
value: 'lower_case'
- key: readability-identifier-naming.ConstexprVariableCase
value: 'lower_case'
- key: readability-identifier-naming.EnumCase
value: 'lower_case'
- key: readability-identifier-naming.EnumConstantCase
value: 'UPPER_CASE'
- key: readability-identifier-naming.FunctionCase
value: 'lower_case'
- key: readability-identifier-naming.GlobalConstantCase
value: 'UPPER_CASE'
- key: readability-identifier-naming.GlobalConstantPointerCase
value: 'aNy_CaSe'
- key: readability-identifier-naming.GlobalFunctionCase
value: 'lower_case'
- key: readability-identifier-naming.GlobalPointerCase
value: 'aNy_CaSe'
- key: readability-identifier-naming.GlobalPointerPrefix
value: 'glob'
- key: readability-identifier-naming.GlobalVariableCase
value: 'aNy_CaSe'
- key: readability-identifier-naming.GlobalVariablePrefix
value: 'glob'
- key: readability-identifier-naming.LocalPointerCase
value: 'lower_case'
- key: readability-identifier-naming.LocalVariableCase
value: 'lower_case'
- key: readability-identifier-naming.MemberCase
value: 'lower_case'
- key: readability-identifier-naming.MethodCase
value: 'lower_case'
- key: readability-identifier-naming.NamespaceCase
value: 'lower_case'
- key: readability-identifier-naming.ParameterCase
value: 'lower_case'
- key: readability-identifier-naming.ParameterPackCase
value: 'lower_case'
- key: readability-identifier-naming.ParameterPackSuffix
value: 's'
- key: readability-identifier-naming.PointerParameterCase
value: 'm_'
- key: readability-identifier-naming.PrivateMemberCase
value: 'lower_case'
- key: readability-identifier-naming.PrivateMemberPrefix
value: 'm_'
- key: readability-identifier-naming.PrivateMethodCase
value: 'lower_case'
- key: readability-identifier-naming.ProtectedMemberCase
value: 'lower_case'
- key: readability-identifier-naming.ProtectedMemberPrefix
value: 'p_'
- key: readability-identifier-naming.ProtectedMethodCase
value: 'lower_case'
- key: readability-identifier-naming.PublicMemberCase
value: 'lower_case'
- key: readability-identifier-naming.PublicMethodCase
value: 'lower_case'
- key: readability-identifier-naming.StaticConstantCase
value: 'UPPER_CASE'
- key: readability-identifier-naming.StaticVariableCase
value: 'lower_case'
- key: readability-identifier-naming.StructCase
value: 'lower_case'
- key: readability-identifier-naming.TemplateParameterCase
value: 'CamelCase'
- key: readability-identifier-naming.TemplateTemplateParameterCase
value: 'CamelCase'
- key: readability-identifier-naming.TypeAliasCase
value: 'lower_case'
- key: readability-identifier-naming.TypeTemplateParameterCase
value: 'CamelCase'
- key: readability-identifier-naming.UnionCase
value: 'lower_case'
- key: readability-identifier-naming.ValueTemplateParameterCase
value: 'CamelCase'
- key: readability-identifier-naming.VariableCase
value: 'lower_case'
- key: readability-identifier-naming.VirtualMethodCase
value: 'lower_case'
- key: readability-identifier-naming.VirtualMethodPrefix
value: 'v'
- key: readability-inconsistent-declaration-parameter-name.Strict
value: '1'
- key: readability-magic-numbers.IgnoredIntegerValues
value: '-1;0;1;2;3;4'
- key: readability-magic-numbers.IgnoredFloatingPointValues
value: '-1.0, 0.0, 1.0, 0.5'
- key: readability-redundant-member-init.IgnoreBaseInCopyConstructors
value: '1'
- key: readability-simplify-boolean-expr.ChainedConditionalReturn
value: '1'
- key: readability-simplify-boolean-expr.ChainedConditionalAssignment
value: '1'