diff options
author | David Robillard <d@drobilla.net> | 2022-05-26 13:24:17 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-05-26 13:24:17 -0400 |
commit | 0744f58d5fc995009a22466299cbe92ba4be4d60 (patch) | |
tree | ec0c846a2e3ab0782c26df549faa723b084cdb0d /test/.clang-tidy | |
parent | 7f723b48680fdb6a1575ea00aa03714ba811626b (diff) | |
download | lilv-0744f58d5fc995009a22466299cbe92ba4be4d60.tar.gz lilv-0744f58d5fc995009a22466299cbe92ba4be4d60.tar.bz2 lilv-0744f58d5fc995009a22466299cbe92ba4be4d60.zip |
Suppress new warnings in clang-tidy 13
Diffstat (limited to 'test/.clang-tidy')
-rw-r--r-- | test/.clang-tidy | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/.clang-tidy b/test/.clang-tidy index a6f6844..ff80138 100644 --- a/test/.clang-tidy +++ b/test/.clang-tidy @@ -4,9 +4,11 @@ Checks: > -*-magic-numbers, -*-uppercase-literal-suffix, -*-vararg, + -altera-*, -android-cloexec-fopen, -bugprone-assert-side-effect, -bugprone-branch-clone, + -bugprone-easily-swappable-parameters, -bugprone-macro-parentheses, -bugprone-narrowing-conversions, -bugprone-not-null-terminated-result, @@ -18,6 +20,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, @@ -36,7 +39,9 @@ Checks: > -misc-unused-parameters, -modernize-return-braced-init-list, -modernize-use-trailing-return-type, + -readability-function-cognitive-complexity, -readability-implicit-bool-conversion, + -readability-suspicious-call-argument, WarningsAsErrors: '*' HeaderFilterRegex: '.*' FormatStyle: file |