-
Notifications
You must be signed in to change notification settings - Fork 243
/
Copy path.clang-tidy
273 lines (273 loc) · 8.82 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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
Checks: "
android-cloexec-accept,\
android-cloexec-accept4,\
android-cloexec-creat,\
android-cloexec-dup,\
android-cloexec-epoll-create,\
android-cloexec-epoll-create1,\
android-cloexec-fopen,\
android-cloexec-inotify-init,\
android-cloexec-inotify-init1,\
android-cloexec-memfd-create,\
android-cloexec-open,\
android-cloexec-pipe,\
android-cloexec-pipe2,\
android-cloexec-socket,\
android-comparison-in-temp-failure-retry,\
bugprone-argument-comment,\
bugprone-assert-side-effect,\
bugprone-bad-signal-to-kill-thread,\
bugprone-bool-pointer-implicit-conversion,\
bugprone-copy-constructor-init,\
bugprone-dangling-handle,\
bugprone-dynamic-static-initializers,\
bugprone-easily-swappable-parameters,\
bugprone-exception-escape,\
bugprone-fold-init-type,\
bugprone-forward-declaration-namespace,\
bugprone-forwarding-reference-overload,\
bugprone-implicit-widening-of-multiplication-result,\
bugprone-inaccurate-erase,\
bugprone-incorrect-roundings,\
bugprone-infinite-loop,\
bugprone-integer-division,\
bugprone-lambda-function-name,\
bugprone-macro-parentheses,\
bugprone-macro-repeated-side-effects,\
bugprone-misplaced-operator-in-strlen-in-alloc,\
bugprone-misplaced-widening-cast,\
bugprone-move-forwarding-reference,\
bugprone-multiple-statement-macro,\
bugprone-no-escape,\
bugprone-not-null-terminated-result,\
bugprone-parent-virtual-call,\
bugprone-posix-return,\
bugprone-redundant-branch-condition,\
bugprone-signal-handler,\
bugprone-signed-char-misuse,\
bugprone-sizeof-container,\
bugprone-sizeof-expression,\
bugprone-spuriously-wake-up-functions,\
bugprone-string-constructor,\
bugprone-string-integer-assignment,\
bugprone-string-literal-with-embedded-nul,\
bugprone-suspicious-enum-usage,\
bugprone-suspicious-include,\
bugprone-suspicious-memset-usage,\
bugprone-suspicious-missing-comma,\
bugprone-suspicious-semicolon,\
bugprone-suspicious-string-compare,\
bugprone-swapped-arguments,\
bugprone-terminating-continue,\
bugprone-throw-keyword-missing,\
bugprone-too-small-loop-variable,\
bugprone-undefined-memory-manipulation,\
bugprone-undelegated-constructor,\
bugprone-unhandled-exception-at-new,\
bugprone-unhandled-self-assignment,\
bugprone-unused-raii,\
bugprone-unused-return-value,\
bugprone-use-after-move,\
bugprone-virtual-near-miss,\
cert-dcl21-cpp,\
cert-dcl50-cpp,\
cert-dcl58-cpp,\
cert-env33-c,\
cert-err34-c,\
cert-err52-cpp,\
cert-err58-cpp,\
cert-err60-cpp,\
cert-flp30-c,\
cert-mem57-cpp,\
cert-msc50-cpp,\
cert-msc51-cpp,\
cert-oop57-cpp,\
cert-oop58-cpp,\
clang-analyzer-core.DynamicTypePropagation,\
clang-analyzer-core.uninitialized.CapturedBlockVariable,\
clang-analyzer-cplusplus.InnerPointer,\
clang-analyzer-cplusplus.NewDelete,\
clang-analyzer-cplusplus.NewDeleteLeaks,\
clang-analyzer-cplusplus.PlacementNewChecker,\
clang-analyzer-cplusplus.SelfAssignment,\
clang-analyzer-nullability.NullableReturnedFromNonnull,\
clang-analyzer-optin.osx.OSObjectCStyleCast,\
clang-analyzer-optin.performance.GCDAntipattern,\
clang-analyzer-optin.performance.Padding,\
clang-analyzer-optin.portability.UnixAPI,\
clang-analyzer-osx.MIG,\
clang-analyzer-osx.NumberObjectConversion,\
clang-analyzer-osx.OSObjectRetainCount,\
clang-analyzer-osx.ObjCProperty,\
clang-analyzer-osx.cocoa.AutoreleaseWrite,\
clang-analyzer-osx.cocoa.Loops,\
clang-analyzer-osx.cocoa.MissingSuperCall,\
clang-analyzer-osx.cocoa.NonNilReturnValue,\
clang-analyzer-osx.cocoa.RunLoopAutoreleaseLeak,\
clang-analyzer-valist.CopyToSelf,\
clang-analyzer-valist.Uninitialized,\
clang-analyzer-valist.Unterminated,\
concurrency-mt-unsafe,\
concurrency-thread-canceltype-asynchronous,\
cppcoreguidelines-avoid-goto,\
cppcoreguidelines-avoid-non-const-global-variables,\
cppcoreguidelines-init-variables,\
cppcoreguidelines-interfaces-global-init,\
cppcoreguidelines-macro-usage,\
cppcoreguidelines-narrowing-conversions,\
cppcoreguidelines-no-malloc,\
cppcoreguidelines-prefer-member-initializer,\
cppcoreguidelines-pro-type-const-cast,\
cppcoreguidelines-pro-type-cstyle-cast,\
cppcoreguidelines-pro-type-member-init,\
cppcoreguidelines-pro-type-static-cast-downcast,\
cppcoreguidelines-pro-type-union-access,\
cppcoreguidelines-slicing,\
cppcoreguidelines-special-member-functions,\
darwin-avoid-spinlock,\
darwin-dispatch-once-nonstatic,\
google-build-explicit-make-pair,\
google-build-namespaces,\
google-build-using-namespace,\
google-default-arguments,\
google-explicit-constructor,\
google-global-names-in-headers,\
google-objc-avoid-nsobject-new,\
google-objc-avoid-throwing-exception,\
google-objc-function-naming,\
google-objc-global-variable-declaration,\
google-readability-avoid-underscore-in-googletest-name,\
google-readability-casting,\
google-readability-todo,\
google-runtime-int,\
google-runtime-operator,\
hicpp-avoid-goto,\
hicpp-exception-baseclass,\
hicpp-multiway-paths-covered,\
hicpp-no-assembler,\
hicpp-signed-bitwise,\
linuxkernel-must-use-errs,\
llvm-header-guard,\
llvm-include-order,\
llvm-namespace-comment,\
llvm-prefer-isa-or-dyn-cast-in-conditionals,\
llvm-prefer-register-over-unsigned,\
llvm-twine-local,\
misc-definitions-in-headers,\
misc-misplaced-const,\
misc-new-delete-overloads,\
misc-no-recursion,\
misc-non-copyable-objects,\
misc-redundant-expression,\
misc-static-assert,\
misc-throw-by-value-catch-by-reference,\
misc-unconventional-assign-operator,\
misc-uniqueptr-reset-release,\
misc-unused-alias-decls,\
misc-unused-parameters,\
misc-unused-using-decls,\
modernize-avoid-bind,\
modernize-concat-nested-namespaces,\
modernize-deprecated-headers,\
modernize-deprecated-ios-base-aliases,\
modernize-loop-convert,\
modernize-make-shared,\
modernize-make-unique,\
modernize-pass-by-value,\
modernize-raw-string-literal,\
modernize-redundant-void-arg,\
modernize-replace-auto-ptr,\
modernize-replace-disallow-copy-and-assign-macro,\
modernize-replace-random-shuffle,\
modernize-return-braced-init-list,\
modernize-shrink-to-fit,\
modernize-unary-static-assert,\
modernize-use-auto,\
modernize-use-bool-literals,\
modernize-use-default-member-init,\
modernize-use-emplace,\
modernize-use-equals-default,\
modernize-use-equals-delete,\
modernize-use-nodiscard,\
modernize-use-noexcept,\
modernize-use-nullptr,\
modernize-use-override,\
modernize-use-transparent-functors,\
modernize-use-uncaught-exceptions,\
modernize-use-using,\
mpi-buffer-deref,\
mpi-type-mismatch,\
objc-avoid-nserror-init,\
objc-dealloc-in-category,\
objc-forbidden-subclassing,\
objc-missing-hash,\
objc-nsinvocation-argument-lifetime,\
objc-property-declaration,\
objc-super-self,\
openmp-exception-escape,\
openmp-use-default-none,\
performance-faster-string-find,\
performance-for-range-copy,\
performance-implicit-conversion-in-loop,\
performance-inefficient-algorithm,\
performance-inefficient-string-concatenation,\
performance-inefficient-vector-operation,\
performance-move-const-arg,\
performance-move-constructor-init,\
performance-no-automatic-move,\
performance-no-int-to-ptr,\
performance-noexcept-move-constructor,\
performance-trivially-destructible,\
performance-type-promotion-in-math-fn,\
performance-unnecessary-copy-initialization,\
performance-unnecessary-value-param,\
portability-restrict-system-includes,\
portability-simd-intrinsics,\
readability-avoid-const-params-in-decls,\
readability-braces-around-statements,\
readability-const-return-type,\
readability-container-size-empty,\
readability-convert-member-functions-to-static,\
readability-delete-null-pointer,\
readability-else-after-return,\
readability-function-cognitive-complexity,\
readability-function-size,\
readability-identifier-naming,\
readability-implicit-bool-conversion,\
readability-inconsistent-declaration-parameter-name,\
readability-isolate-declaration,\
readability-make-member-function-const,\
readability-misleading-indentation,\
readability-misplaced-array-index,\
readability-non-const-parameter,\
readability-qualified-auto,\
readability-redundant-access-specifiers,\
readability-redundant-control-flow,\
readability-redundant-declaration,\
readability-redundant-function-ptr-dereference,\
readability-redundant-member-init,\
readability-redundant-preprocessor,\
readability-redundant-smartptr-get,\
readability-redundant-string-cstr,\
readability-redundant-string-init,\
readability-simplify-boolean-expr,\
readability-simplify-subscript-expr,\
readability-static-accessed-through-instance,\
readability-static-definition-in-anonymous-namespace,\
readability-string-compare,\
readability-uniqueptr-delete-release,\
readability-use-anyofallof,\
zircon-temporary-objects"
CheckOptions:
- key: cppcoreguidelines-pro-type-member-init.IgnoreArrays
value: '0'
- key: cppcoreguidelines-special-member-functions.AllowMissingMoveFunctions
value: '1'
- key: cppcoreguidelines-special-member-functions.AllowSoleDefaultDtor
value: '1'
- key: cppcoreguidelines-special-member-functions.AllowMissingMoveFunctionsWhenCopyIsDeleted
value: '1'
- key: readability-braces-around-statements.ShortStatementLines
value: '1'
- key: modernize-use-default-member-init.IgnoreMacros
value: '1'