-
Notifications
You must be signed in to change notification settings - Fork 5
/
.clang-tidy
458 lines (457 loc) · 23 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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
---
Checks:
- "bugprone-argument-comment"
- "bugprone-assert-side-effect"
# - "bugprone-assignment-in-if-condition"
- "bugprone-bad-signal-to-kill-thread"
- "bugprone-bool-pointer-implicit-conversion"
- "bugprone-branch-clone"
- "bugprone-copy-constructor-init"
- "bugprone-dangling-handle"
- "bugprone-dynamic-static-initializers"
- "bugprone-easily-swappable-parameters"
- "bugprone-empty-catch"
- "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-pointer-arithmetic-in-alloc"
- "bugprone-misplaced-widening-cast"
- "bugprone-move-forwarding-reference"
- "bugprone-multiple-new-in-one-expression"
- "bugprone-multiple-statement-macro"
# - "bugprone-narrowing-conversions"
- "bugprone-no-escape"
- "bugprone-non-zero-enum-to-bool-conversion"
- "bugprone-not-null-terminated-result"
- "bugprone-parent-virtual-call"
- "bugprone-posix-return"
- "bugprone-redundant-branch-condition"
# - "bugprone-reserved-identifier"
- "bugprone-shared-ptr-array-mismatch"
- "bugprone-signal-handler"
- "bugprone-signed-char-misuse"
- "bugprone-sizeof-container"
- "bugprone-sizeof-expression"
- "bugprone-spuriously-wake-up-functions"
- "bugprone-standalone-empty"
- "bugprone-string-constructor"
- "bugprone-string-integer-assignment"
- "bugprone-string-literal-with-embedded-nul"
- "bugprone-stringview-nullptr"
- "bugprone-suspicious-enum-usage"
- "bugprone-suspicious-include"
- "bugprone-suspicious-memory-comparison"
- "bugprone-suspicious-memset-usage"
- "bugprone-suspicious-missing-comma"
- "bugprone-suspicious-realloc-usage"
- "bugprone-suspicious-semicolon"
- "bugprone-suspicious-string-compare"
- "bugprone-swapped-arguments"
- "bugprone-switch-missing-default-case"
- "bugprone-terminating-continue"
- "bugprone-throw-keyword-missing"
- "bugprone-too-small-loop-variable"
- "bugprone-unchecked-optional-access"
- "bugprone-undefined-memory-manipulation"
- "bugprone-undelegated-constructor"
- "bugprone-unhandled-exception-at-new"
- "bugprone-unhandled-self-assignment"
- "bugprone-unique-ptr-array-mismatch"
- "bugprone-unsafe-functions"
- "bugprone-unused-raii"
- "bugprone-unused-return-value"
- "bugprone-use-after-move"
- "bugprone-virtual-near-miss"
- "cert-con36-c"
- "cert-con54-cpp"
- "cert-dcl03-c"
- "cert-dcl16-c"
- "cert-dcl21-cpp"
# - "cert-dcl37-c"
- "cert-dcl50-cpp"
# - "cert-dcl51-cpp"
- "cert-dcl54-cpp"
- "cert-dcl58-cpp"
- "cert-dcl59-cpp"
- "cert-env33-c"
- "cert-err09-cpp"
# - "cert-err33-c"
- "cert-err34-c"
- "cert-err52-cpp"
- "cert-err58-cpp"
- "cert-err60-cpp"
- "cert-err61-cpp"
- "cert-exp42-c"
- "cert-fio38-c"
- "cert-flp30-c"
- "cert-flp37-c"
- "cert-mem57-cpp"
- "cert-msc24-c"
# - "cert-msc30-c"
- "cert-msc32-c"
- "cert-msc33-c"
# - "cert-msc50-cpp"
- "cert-msc51-cpp"
- "cert-msc54-cpp"
- "cert-oop11-cpp"
- "cert-oop54-cpp"
- "cert-oop57-cpp"
- "cert-oop58-cpp"
- "cert-pos44-c"
- "cert-pos47-c"
- "cert-sig30-c"
- "cert-str34-c"
- "clang-analyzer-apiModeling.Errno"
- "clang-analyzer-apiModeling.TrustNonnull"
- "clang-analyzer-apiModeling.TrustReturnsNonnull"
- "clang-analyzer-apiModeling.google.GTest"
- "clang-analyzer-apiModeling.llvm.CastValue"
- "clang-analyzer-apiModeling.llvm.ReturnValue"
- "clang-analyzer-core.CallAndMessage"
- "clang-analyzer-core.CallAndMessageModeling"
- "clang-analyzer-core.DivideZero"
- "clang-analyzer-core.DynamicTypePropagation"
- "clang-analyzer-core.NonNullParamChecker"
- "clang-analyzer-core.NonnilStringConstants"
- "clang-analyzer-core.NullDereference"
- "clang-analyzer-core.StackAddrEscapeBase"
- "clang-analyzer-core.StackAddressEscape"
- "clang-analyzer-core.UndefinedBinaryOperatorResult"
- "clang-analyzer-core.VLASize"
- "clang-analyzer-core.builtin.BuiltinFunctions"
- "clang-analyzer-core.builtin.NoReturnFunctions"
- "clang-analyzer-core.uninitialized.ArraySubscript"
- "clang-analyzer-core.uninitialized.Assign"
- "clang-analyzer-core.uninitialized.Branch"
- "clang-analyzer-core.uninitialized.CapturedBlockVariable"
- "clang-analyzer-core.uninitialized.NewArraySize"
- "clang-analyzer-core.uninitialized.UndefReturn"
- "clang-analyzer-cplusplus.InnerPointer"
- "clang-analyzer-cplusplus.Move"
- "clang-analyzer-cplusplus.NewDelete"
- "clang-analyzer-cplusplus.NewDeleteLeaks"
- "clang-analyzer-cplusplus.PlacementNew"
- "clang-analyzer-cplusplus.PureVirtualCall"
- "clang-analyzer-cplusplus.SelfAssignment"
- "clang-analyzer-cplusplus.SmartPtrModeling"
- "clang-analyzer-cplusplus.StringChecker"
- "clang-analyzer-cplusplus.VirtualCallModeling"
- "clang-analyzer-deadcode.DeadStores"
- "clang-analyzer-fuchsia.HandleChecker"
- "clang-analyzer-nullability.NullPassedToNonnull"
- "clang-analyzer-nullability.NullReturnedFromNonnull"
- "clang-analyzer-nullability.NullabilityBase"
- "clang-analyzer-nullability.NullableDereferenced"
- "clang-analyzer-nullability.NullablePassedToNonnull"
- "clang-analyzer-nullability.NullableReturnedFromNonnull"
- "clang-analyzer-optin.cplusplus.UninitializedObject"
- "clang-analyzer-optin.cplusplus.VirtualCall"
- "clang-analyzer-optin.mpi.MPI-Checker"
- "clang-analyzer-optin.osx.OSObjectCStyleCast"
- "clang-analyzer-optin.performance.GCDAntipattern"
- "clang-analyzer-optin.performance.Padding"
- "clang-analyzer-optin.portability.UnixAPI"
- "clang-analyzer-osx.API"
- "clang-analyzer-osx.MIG"
- "clang-analyzer-osx.NSOrCFErrorDerefChecker"
- "clang-analyzer-osx.NumberObjectConversion"
- "clang-analyzer-osx.OSObjectRetainCount"
- "clang-analyzer-osx.ObjCProperty"
- "clang-analyzer-osx.SecKeychainAPI"
- "clang-analyzer-osx.coreFoundation.CFError"
- "clang-analyzer-osx.coreFoundation.CFNumber"
- "clang-analyzer-osx.coreFoundation.CFRetainRelease"
- "clang-analyzer-osx.coreFoundation.containers.OutOfBounds"
- "clang-analyzer-osx.coreFoundation.containers.PointerSizedValues"
- "clang-analyzer-security.FloatLoopCounter"
- "clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling"
- "clang-analyzer-security.insecureAPI.SecuritySyntaxChecker"
- "clang-analyzer-security.insecureAPI.UncheckedReturn"
- "clang-analyzer-security.insecureAPI.bcmp"
- "clang-analyzer-security.insecureAPI.bcopy"
- "clang-analyzer-security.insecureAPI.bzero"
- "clang-analyzer-security.insecureAPI.decodeValueOfObjCType"
- "clang-analyzer-security.insecureAPI.getpw"
- "clang-analyzer-security.insecureAPI.gets"
- "clang-analyzer-security.insecureAPI.mkstemp"
- "clang-analyzer-security.insecureAPI.mktemp"
- "clang-analyzer-security.insecureAPI.rand"
- "clang-analyzer-security.insecureAPI.strcpy"
- "clang-analyzer-security.insecureAPI.vfork"
- "clang-analyzer-unix.API"
- "clang-analyzer-unix.DynamicMemoryModeling"
- "clang-analyzer-unix.Malloc"
- "clang-analyzer-unix.MallocSizeof"
- "clang-analyzer-unix.MismatchedDeallocator"
- "clang-analyzer-unix.Vfork"
- "clang-analyzer-unix.cstring.BadSizeArg"
- "clang-analyzer-unix.cstring.CStringModeling"
- "clang-analyzer-unix.cstring.NullArg"
- "clang-analyzer-valist.CopyToSelf"
- "clang-analyzer-valist.Uninitialized"
- "clang-analyzer-valist.Unterminated"
- "clang-analyzer-valist.ValistBase"
- "clang-analyzer-webkit.NoUncountedMemberChecker"
- "clang-analyzer-webkit.RefCntblBaseVirtualDtor"
- "clang-analyzer-webkit.UncountedLambdaCapturesChecker"
# - "concurrency-mt-unsafe"
- "concurrency-thread-canceltype-asynchronous"
# - "cppcoreguidelines-avoid-c-arrays"
- "cppcoreguidelines-avoid-capturing-lambda-coroutines"
- "cppcoreguidelines-avoid-const-or-ref-data-members"
- "cppcoreguidelines-avoid-do-while"
# - "cppcoreguidelines-avoid-goto"
# - "cppcoreguidelines-avoid-magic-numbers"
# - "cppcoreguidelines-avoid-non-const-global-variables"
- "cppcoreguidelines-avoid-reference-coroutine-parameters"
- "cppcoreguidelines-c-copy-assignment-signature"
- "cppcoreguidelines-explicit-virtual-functions"
- "cppcoreguidelines-init-variables"
- "cppcoreguidelines-interfaces-global-init"
# - "cppcoreguidelines-macro-usage"
- "cppcoreguidelines-misleading-capture-default-by-value"
- "cppcoreguidelines-missing-std-forward"
# - "cppcoreguidelines-narrowing-conversions"
# - "cppcoreguidelines-no-malloc"
- "cppcoreguidelines-noexcept-destructor"
- "cppcoreguidelines-noexcept-move-operations"
- "cppcoreguidelines-noexcept-swap"
# - "cppcoreguidelines-non-private-member-variables-in-classes"
# - "cppcoreguidelines-owning-memory"
# - "cppcoreguidelines-prefer-member-initializer"
# - "cppcoreguidelines-pro-bounds-array-to-pointer-decay"
- "cppcoreguidelines-pro-bounds-constant-array-index"
- "cppcoreguidelines-pro-bounds-pointer-arithmetic"
- "cppcoreguidelines-pro-type-const-cast"
# - "cppcoreguidelines-pro-type-cstyle-cast"
- "cppcoreguidelines-pro-type-member-init"
- "cppcoreguidelines-pro-type-reinterpret-cast"
- "cppcoreguidelines-pro-type-static-cast-downcast"
- "cppcoreguidelines-pro-type-union-access"
- "cppcoreguidelines-pro-type-vararg"
- "cppcoreguidelines-rvalue-reference-param-not-moved"
- "cppcoreguidelines-slicing"
# - "cppcoreguidelines-special-member-functions"
- "cppcoreguidelines-use-default-member-init"
- "cppcoreguidelines-virtual-class-destructor"
- "darwin-avoid-spinlock"
- "darwin-dispatch-once-nonstatic"
# - "llvm-else-after-return"
# - "llvm-header-guard"
# - "llvm-include-order"
# - "llvm-namespace-comment"
- "llvm-prefer-isa-or-dyn-cast-in-conditionals"
- "llvm-prefer-register-over-unsigned"
- "llvm-qualified-auto"
- "llvm-twine-local"
- "misc-confusable-identifiers"
# - "misc-const-correctness"
- "misc-definitions-in-headers"
- "misc-header-include-cycle"
# - "misc-include-cleaner"
- "misc-misleading-bidirectional"
- "misc-misleading-identifier"
- "misc-misplaced-const"
- "misc-new-delete-overloads"
- "misc-no-recursion"
- "misc-non-copyable-objects"
# - "misc-non-private-member-variables-in-classes"
- "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"
- "misc-use-anonymous-namespace"
- "performance-avoid-endl"
- "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-destructor"
- "performance-noexcept-move-constructor"
- "performance-noexcept-swap"
- "performance-trivially-destructible"
- "performance-type-promotion-in-math-fn"
- "performance-unnecessary-copy-initialization"
- "performance-unnecessary-value-param"
- "portability-restrict-system-includes"
- "portability-simd-intrinsics"
- "portability-std-allocator-const"
# - "readability-avoid-const-params-in-decls"
- "readability-avoid-unconditional-preprocessor-if"
# - "readability-braces-around-statements"
# - "readability-const-return-type"
- "readability-container-contains"
- "readability-container-data-pointer"
# - "readability-container-size-empty"
# - "readability-convert-member-functions-to-static"
# - "readability-delete-null-pointer"
- "readability-duplicate-include"
# - "readability-else-after-return"
# - "readability-function-cognitive-complexity"
- "readability-function-size"
# - "readability-identifier-length"
- "readability-identifier-naming"
- "readability-implicit-bool-conversion"
- "readability-inconsistent-declaration-parameter-name"
# - "readability-isolate-declaration"
# - "readability-magic-numbers"
# - "readability-make-member-function-const"
- "readability-misleading-indentation"
- "readability-misplaced-array-index"
- "readability-named-parameter"
- "readability-non-const-parameter"
- "readability-operators-representation"
- "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-suspicious-call-argument"
- "readability-uniqueptr-delete-release"
- "readability-uppercase-literal-suffix"
- "readability-use-anyofallof"
WarningsAsErrors: ''
HeaderFileExtensions:
- ''
- h
- hh
- hpp
- hxx
ImplementationFileExtensions:
- c
- cc
- cpp
- cxx
HeaderFilterRegex: ''
AnalyzeTemporaryDtors: false
FormatStyle: none
CheckOptions:
performance-inefficient-vector-operation.VectorLikeClasses: '::std::vector'
bugprone-argument-comment.CommentFloatLiterals: '0'
bugprone-argument-comment.CommentUserDefinedLiterals: '0'
portability-simd-intrinsics.Suggest: 'false'
bugprone-sizeof-expression.WarnOnSizeOfThis: 'true'
performance-unnecessary-value-param.AllowedTypes: ''
bugprone-suspicious-missing-comma.MaxConcatenatedTokens: '5'
portability-simd-intrinsics.Std: ''
bugprone-signed-char-misuse.CharTypdefsToIgnore: ''
performance-move-const-arg.CheckTriviallyCopyableMove: 'true'
bugprone-dangling-handle.HandleClasses: 'std::basic_string_view;std::experimental::basic_string_view'
llvm-else-after-return.WarnOnUnfixable: 'false'
bugprone-exception-escape.IgnoredExceptions: ''
bugprone-signal-handler.AsyncSafeFunctionSet: POSIX
bugprone-argument-comment.CommentIntegerLiterals: '0'
bugprone-argument-comment.CommentNullPtrs: '0'
cert-oop54-cpp.WarnOnlyIfThisHasSuspiciousField: 'false'
bugprone-easily-swappable-parameters.ModelImplicitConversions: 'false'
bugprone-narrowing-conversions.WarnOnIntegerNarrowingConversion: 'false'
bugprone-argument-comment.CommentCharacterLiterals: '0'
cert-dcl16-c.NewSuffixes: 'L;LL;LU;LLU'
bugprone-reserved-identifier.Invert: 'false'
bugprone-suspicious-missing-comma.RatioThreshold: '0.200000'
bugprone-string-constructor.LargeLengthThreshold: '8388608'
cert-str34-c.DiagnoseSignedUnsignedCharComparisons: 'false'
bugprone-argument-comment.StrictMode: '0'
bugprone-string-constructor.WarnOnLargeLength: 'true'
bugprone-too-small-loop-variable.MagnitudeBitsUpperLimit: '16'
bugprone-unused-return-value.CheckedFunctions: '::std::async;::std::launder;::std::remove;::std::remove_if;::std::unique;::std::unique_ptr::release;::std::basic_string::empty;::std::vector::empty;::std::back_inserter;::std::distance;::std::find;::std::find_if;::std::inserter;::std::lower_bound;::std::make_pair;::std::map::count;::std::map::find;::std::map::lower_bound;::std::multimap::equal_range;::std::multimap::upper_bound;::std::set::count;::std::set::find;::std::setfill;::std::setprecision;::std::setw;::std::upper_bound;::std::vector::at;::bsearch;::ferror;::feof;::isalnum;::isalpha;::isblank;::iscntrl;::isdigit;::isgraph;::islower;::isprint;::ispunct;::isspace;::isupper;::iswalnum;::iswprint;::iswspace;::isxdigit;::memchr;::memcmp;::strcmp;::strcoll;::strncmp;::strpbrk;::strrchr;::strspn;::strstr;::wcscmp;::access;::bind;::connect;::difftime;::dlsym;::fnmatch;::getaddrinfo;::getopt;::htonl;::htons;::iconv_open;::inet_addr;::isascii;::isatty;::mmap;::newlocale;::openat;::pathconf;::pthread_equal;::pthread_getspecific;::pthread_mutex_trylock;::readdir;::readlink;::recvmsg;::regexec;::scandir;::semget;::setjmp;::shm_open;::shmget;::sigismember;::strcasecmp;::strsignal;::ttyname'
bugprone-reserved-identifier.AggressiveDependentMemberLookup: 'false'
google-readability-namespace-comments.ShortNamespaceLines: '10'
bugprone-argument-comment.CommentStringLiterals: '0'
bugprone-sizeof-expression.WarnOnSizeOfConstant: 'true'
bugprone-implicit-widening-of-multiplication-result.IncludeStyle: llvm
bugprone-suspicious-include.HeaderFileExtensions: ';h;hh;hpp;hxx'
bugprone-empty-catch.AllowEmptyCatchForExceptions: ''
performance-inefficient-vector-operation.EnableProto: 'false'
bugprone-argument-comment.CommentBoolLiterals: '0'
bugprone-unchecked-optional-access.IgnoreSmartPointerDereference: 'false'
bugprone-narrowing-conversions.WarnOnEquivalentBitWidth: 'true'
performance-for-range-copy.AllowedTypes: ''
bugprone-easily-swappable-parameters.MinimumLength: '100'
bugprone-stringview-nullptr.IncludeStyle: llvm
bugprone-narrowing-conversions.PedanticMode: 'false'
bugprone-suspicious-enum-usage.StrictMode: 'false'
performance-no-automatic-move.AllowedTypes: ''
llvm-qualified-auto.AddConstToQualified: 'false'
bugprone-suspicious-include.ImplementationFileExtensions: 'c;cc;cpp;cxx'
bugprone-sizeof-expression.WarnOnSizeOfIntegerExpression: 'false'
bugprone-unhandled-self-assignment.WarnOnlyIfThisHasSuspiciousField: 'true'
bugprone-dynamic-static-initializers.HeaderFileExtensions: ';h;hh;hpp;hxx'
performance-unnecessary-copy-initialization.AllowedTypes: ''
google-readability-braces-around-statements.ShortStatementLines: '1'
bugprone-easily-swappable-parameters.SuppressParametersUsedTogether: 'true'
bugprone-narrowing-conversions.WarnWithinTemplateInstantiation: 'false'
bugprone-argument-comment.IgnoreSingleArgument: '0'
bugprone-narrowing-conversions.WarnOnFloatingPointNarrowingConversion: 'true'
bugprone-suspicious-missing-comma.SizeThreshold: '5'
performance-unnecessary-value-param.IncludeStyle: llvm
performance-inefficient-string-concatenation.StrictMode: 'false'
bugprone-easily-swappable-parameters.QualifiersMix: 'false'
bugprone-narrowing-conversions.WarnOnIntegerToFloatingPointNarrowingConversion: 'true'
bugprone-easily-swappable-parameters.NamePrefixSuffixSilenceDissimilarityTreshold: '1'
bugprone-suspicious-string-compare.WarnOnLogicalNotComparison: 'false'
bugprone-implicit-widening-of-multiplication-result.UseCXXHeadersInCppSources: 'true'
bugprone-unsafe-functions.ReportMoreUnsafeFunctions: 'true'
portability-restrict-system-includes.Includes: '*'
cppcoreguidelines-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic: 'true'
bugprone-suspicious-string-compare.StringCompareLikeFunctions: ''
google-readability-function-size.StatementThreshold: '800'
performance-move-const-arg.CheckMoveToConstRef: 'true'
bugprone-implicit-widening-of-multiplication-result.UseCXXStaticCastsInCppSources: 'true'
bugprone-suspicious-string-compare.WarnOnImplicitComparison: 'true'
performance-faster-string-find.StringLikeClasses: '::std::basic_string;::std::basic_string_view'
cert-err33-c.CheckedFunctions: '::aligned_alloc;::asctime_s;::at_quick_exit;::atexit;::bsearch;::bsearch_s;::btowc;::c16rtomb;::c32rtomb;::calloc;::clock;::cnd_broadcast;::cnd_init;::cnd_signal;::cnd_timedwait;::cnd_wait;::ctime_s;::fclose;::fflush;::fgetc;::fgetpos;::fgets;::fgetwc;::fopen;::fopen_s;::fprintf;::fprintf_s;::fputc;::fputs;::fputwc;::fputws;::fread;::freopen;::freopen_s;::fscanf;::fscanf_s;::fseek;::fsetpos;::ftell;::fwprintf;::fwprintf_s;::fwrite;::fwscanf;::fwscanf_s;::getc;::getchar;::getenv;::getenv_s;::gets_s;::getwc;::getwchar;::gmtime;::gmtime_s;::localtime;::localtime_s;::malloc;::mbrtoc16;::mbrtoc32;::mbsrtowcs;::mbsrtowcs_s;::mbstowcs;::mbstowcs_s;::memchr;::mktime;::mtx_init;::mtx_lock;::mtx_timedlock;::mtx_trylock;::mtx_unlock;::printf_s;::putc;::putwc;::raise;::realloc;::remove;::rename;::scanf;::scanf_s;::setlocale;::setvbuf;::signal;::snprintf;::snprintf_s;::sprintf;::sprintf_s;::sscanf;::sscanf_s;::strchr;::strerror_s;::strftime;::strpbrk;::strrchr;::strstr;::strtod;::strtof;::strtoimax;::strtok;::strtok_s;::strtol;::strtold;::strtoll;::strtoul;::strtoull;::strtoumax;::strxfrm;::swprintf;::swprintf_s;::swscanf;::swscanf_s;::thrd_create;::thrd_detach;::thrd_join;::thrd_sleep;::time;::timespec_get;::tmpfile;::tmpfile_s;::tmpnam;::tmpnam_s;::tss_create;::tss_get;::tss_set;::ungetc;::ungetwc;::vfprintf;::vfprintf_s;::vfscanf;::vfscanf_s;::vfwprintf;::vfwprintf_s;::vfwscanf;::vfwscanf_s;::vprintf_s;::vscanf;::vscanf_s;::vsnprintf;::vsnprintf_s;::vsprintf;::vsprintf_s;::vsscanf;::vsscanf_s;::vswprintf;::vswprintf_s;::vswscanf;::vswscanf_s;::vwprintf_s;::vwscanf;::vwscanf_s;::wcrtomb;::wcschr;::wcsftime;::wcspbrk;::wcsrchr;::wcsrtombs;::wcsrtombs_s;::wcsstr;::wcstod;::wcstof;::wcstoimax;::wcstok;::wcstok_s;::wcstol;::wcstold;::wcstoll;::wcstombs;::wcstombs_s;::wcstoul;::wcstoull;::wcstoumax;::wcsxfrm;::wctob;::wctrans;::wctype;::wmemchr;::wprintf_s;::wscanf;::wscanf_s;'
bugprone-unused-return-value.CheckedReturnTypes: '::std::error_code;::std::error_condition;::std::errc;::std::expected;::boost::system::error_code'
bugprone-assert-side-effect.IgnoredFunctions: __builtin_expect
bugprone-string-constructor.StringNames: '::std::basic_string;::std::basic_string_view'
bugprone-exception-escape.FunctionsThatShouldNotThrow: ''
bugprone-misplaced-widening-cast.CheckImplicitCasts: 'false'
bugprone-not-null-terminated-result.WantToUseSafeFunctions: 'true'
performance-unnecessary-copy-initialization.ExcludedContainerTypes: ''
bugprone-non-zero-enum-to-bool-conversion.EnumIgnoreList: ''
bugprone-narrowing-conversions.IgnoreConversionFromTypes: ''
bugprone-assert-side-effect.AssertMacros: assert,NSAssert,NSCAssert
bugprone-easily-swappable-parameters.IgnoredParameterTypeSuffixes: 'bool;Bool;_Bool;it;It;iterator;Iterator;inputit;InputIt;forwardit;ForwardIt;bidirit;BidirIt;constiterator;const_iterator;Const_Iterator;Constiterator;ConstIterator;RandomIt;randomit;random_iterator;ReverseIt;reverse_iterator;reverse_const_iterator;ConstReverseIterator;Const_Reverse_Iterator;const_reverse_iterator;Constreverseiterator;constreverseiterator'
bugprone-sizeof-expression.WarnOnSizeOfCompareToConstant: 'true'
performance-for-range-copy.WarnOnAllAutoCopies: 'false'
bugprone-empty-catch.IgnoreCatchWithKeywords: '@TODO;@FIXME'
google-readability-namespace-comments.SpacesBeforeComments: '2'
bugprone-assert-side-effect.CheckFunctionCalls: 'false'
bugprone-sizeof-expression.WarnOnSizeOfPointerToAggregate: 'true'
bugprone-reserved-identifier.AllowedIdentifiers: ''
bugprone-easily-swappable-parameters.IgnoredParameterNames: '"";iterator;Iterator;begin;Begin;end;End;first;First;last;Last;lhs;LHS;rhs;RHS'
bugprone-signed-char-misuse.DiagnoseSignedUnsignedCharComparisons: 'true'
performance-type-promotion-in-math-fn.IncludeStyle: llvm
llvm-else-after-return.WarnOnConditionVariables: 'false'
UseColor: true
SystemHeaders: false