summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-05-26 13:24:54 -0400
committerDavid Robillard <d@drobilla.net>2022-05-26 13:24:54 -0400
commiteb8decd022e46309405a0715c51b31ff1b0c5996 (patch)
treefbfdba65beaefc1c99ba161e04d3f472c4c7b317
parent13eec9c0e2372e4e01b636e9a3d557da927552f6 (diff)
downloadsuil-eb8decd022e46309405a0715c51b31ff1b0c5996.tar.gz
suil-eb8decd022e46309405a0715c51b31ff1b0c5996.tar.bz2
suil-eb8decd022e46309405a0715c51b31ff1b0c5996.zip
Suppress new warnings in clang-tidy 13
-rw-r--r--.clang-tidy7
1 files changed, 7 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 1a009ab..86f28da 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -5,14 +5,19 @@ Checks: >
-*-no-malloc,
-*-uppercase-literal-suffix,
-*-vararg,
+ -altera-*,
+ -bugprone-easily-swappable-parameters,
-bugprone-suspicious-string-compare,
-clang-analyzer-core.CallAndMessage,
-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,
+ -clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,
+ -concurrency-mt-unsafe,
-cppcoreguidelines-avoid-non-const-global-variables,
-cppcoreguidelines-macro-usage,
-cppcoreguidelines-owning-memory,
-cppcoreguidelines-pro-bounds-pointer-arithmetic,
-cppcoreguidelines-pro-type-cstyle-cast,
+ -cppcoreguidelines-pro-type-reinterpret-cast,
-fuchsia-default-arguments,
-fuchsia-default-arguments-calls,
-google-runtime-int,
@@ -20,6 +25,8 @@ Checks: >
-llvm-header-guard,
-llvmlibc-*,
-modernize-use-trailing-return-type,
+ -performance-no-int-to-ptr,
+ -readability-function-cognitive-complexity,
-readability-implicit-bool-conversion,
-readability-non-const-parameter,
WarningsAsErrors: '*'