summaryrefslogtreecommitdiffstats
path: root/.clang-tidy
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-05-26 13:24:17 -0400
committerDavid Robillard <d@drobilla.net>2022-05-26 13:24:17 -0400
commit0744f58d5fc995009a22466299cbe92ba4be4d60 (patch)
treeec0c846a2e3ab0782c26df549faa723b084cdb0d /.clang-tidy
parent7f723b48680fdb6a1575ea00aa03714ba811626b (diff)
downloadlilv-0744f58d5fc995009a22466299cbe92ba4be4d60.tar.gz
lilv-0744f58d5fc995009a22466299cbe92ba4be4d60.tar.bz2
lilv-0744f58d5fc995009a22466299cbe92ba4be4d60.zip
Suppress new warnings in clang-tidy 13
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy6
1 files changed, 6 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 9accc2c..67171a8 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -2,8 +2,10 @@ Checks: >
*,
-*-magic-numbers,
-*-uppercase-literal-suffix,
+ -altera-*,
-android-cloexec-fopen,
-bugprone-branch-clone,
+ -bugprone-easily-swappable-parameters,
-bugprone-macro-parentheses,
-bugprone-narrowing-conversions,
-bugprone-not-null-terminated-result,
@@ -14,6 +16,7 @@ Checks: >
-cert-err34-c,
-clang-analyzer-alpha.*,
-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,
+ -concurrency-mt-unsafe,
-cppcoreguidelines-avoid-non-const-global-variables,
-cppcoreguidelines-macro-usage,
-cppcoreguidelines-narrowing-conversions,
@@ -26,7 +29,10 @@ Checks: >
-misc-non-private-member-variables-in-classes,
-misc-unused-parameters,
-modernize-use-trailing-return-type,
+ -performance-no-int-to-ptr,
+ -readability-function-cognitive-complexity,
-readability-implicit-bool-conversion,
+ -readability-suspicious-call-argument,
WarningsAsErrors: '*'
HeaderFilterRegex: '.*'
FormatStyle: file