diff options
Diffstat (limited to 'test/.clang-tidy')
-rw-r--r-- | test/.clang-tidy | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/test/.clang-tidy b/test/.clang-tidy index 75f5312d..80737308 100644 --- a/test/.clang-tidy +++ b/test/.clang-tidy @@ -7,9 +7,14 @@ Checks: > -bugprone-assert-side-effect, -bugprone-easily-swappable-parameters, -cert-err33-c, - -clang-analyzer-nullability.NullableDereferenced, + -clang-analyzer-optin.core.EnumCastOutOfRange, -clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling, -concurrency-mt-unsafe, -hicpp-signed-bitwise, - -readability-function-cognitive-complexity, + -readability-redundant-casting, +CheckOptions: + - key: readability-function-cognitive-complexity.IgnoreMacros + value: 'true' + - key: readability-function-cognitive-complexity.Threshold + value: '6' InheritParentConfig: true |