diff options
author | David Robillard <d@drobilla.net> | 2022-07-13 23:46:18 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-07-17 18:14:02 -0400 |
commit | e1c80a39b280509007693225abb2eb9d47ac01e1 (patch) | |
tree | f2cfcccae491e6a1843f9d0133cc84b433124a27 /test | |
parent | 779e016962fdd59d333387077387a81555ca5a4b (diff) | |
download | lv2-e1c80a39b280509007693225abb2eb9d47ac01e1.tar.xz |
Suppress new warnings in clang and clang-tidy 14
Diffstat (limited to 'test')
-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 7846913..f73d7a6 100644 --- a/test/.clang-tidy +++ b/test/.clang-tidy @@ -1,15 +1,20 @@ Checks: > *, + -*-else-after-return, -*-magic-numbers, -*-uppercase-literal-suffix, -altera-*, -bugprone-easily-swappable-parameters, -bugprone-macro-parentheses, + -bugprone-suspicious-include, + -bugprone-suspicious-string-compare, -llvm-header-guard, -llvmlibc-implementation-in-namespace, -llvmlibc-restrict-system-libc-headers, -modernize-use-trailing-return-type, -performance-no-int-to-ptr, + -readability-function-cognitive-complexity, + -readability-identifier-length, WarningsAsErrors: '*' HeaderFilterRegex: '.*' FormatStyle: file |