diff options
author | David Robillard <d@drobilla.net> | 2022-07-14 15:43:31 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-08-17 23:34:55 -0400 |
commit | a136bb1446d61c771cc8d28ae49a2bc0f61b90f5 (patch) | |
tree | 8468e90674048d463cd97a7773549889e436c548 /.clang-tidy | |
parent | 35631bf2f2bdf1f5b00331f3ae148649472af1fd (diff) | |
download | ingen-a136bb1446d61c771cc8d28ae49a2bc0f61b90f5.tar.gz ingen-a136bb1446d61c771cc8d28ae49a2bc0f61b90f5.tar.bz2 ingen-a136bb1446d61c771cc8d28ae49a2bc0f61b90f5.zip |
Suppress new warnings in clang-tidy 14
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy index 60a2b184..51c2a5c9 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -9,9 +9,12 @@ Checks: > -*-non-private-member-variables-in-classes, -*-special-member-functions, -*-uppercase-literal-suffix, + -*-use-auto, -abseil-string-find-str-contains, + -altera-*, -android-cloexec-*, -bugprone-branch-clone, + -bugprone-easily-swappable-parameters, -bugprone-exception-escape, -bugprone-macro-parentheses, -bugprone-parent-virtual-call, @@ -21,6 +24,7 @@ Checks: > -cert-dcl37-c, -cert-dcl50-cpp, -cert-dcl51-cpp, + -cert-err33-c, -cert-err34-c, -cert-err58-cpp, -cert-str34-c, @@ -28,10 +32,12 @@ Checks: > -clang-analyzer-core.CallAndMessage, -clang-analyzer-optin.cplusplus.VirtualCall, -clang-analyzer-valist.Uninitialized, + -concurrency-mt-unsafe, -cppcoreguidelines-avoid-non-const-global-variables, -cppcoreguidelines-macro-usage, -cppcoreguidelines-no-malloc, -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, @@ -45,6 +51,7 @@ Checks: > -fuchsia-*, -google-default-arguments, -google-explicit-constructor, + -google-readability-casting, -google-readability-todo, -google-runtime-int, -google-runtime-references, @@ -58,8 +65,14 @@ Checks: > -llvmlibc-*, -misc-no-recursion, -misc-unused-parameters, + -modernize-concat-nested-namespaces, + -modernize-make-unique, + -modernize-return-braced-init-list, + -modernize-use-nodiscard, -modernize-use-trailing-return-type, -readability-convert-member-functions-to-static, + -readability-function-cognitive-complexity, + -readability-identifier-length, -readability-implicit-bool-conversion, -readability-use-anyofallof, CheckOptions: |