aboutsummaryrefslogtreecommitdiffstats
path: root/test/cpp/.clang-tidy
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-12-10 14:51:34 -0500
committerDavid Robillard <d@drobilla.net>2022-12-11 13:15:02 -0500
commit86e5e821531ff563b7e4642aa792d9e0f3067557 (patch)
tree8c637653d8222471309f762eb36bc774f62a8fc2 /test/cpp/.clang-tidy
parentd102b7df35d900d568e49e640a5331f283717737 (diff)
downloadlv2-86e5e821531ff563b7e4642aa792d9e0f3067557.tar.xz
Test headers for warnings more strictly
Diffstat (limited to 'test/cpp/.clang-tidy')
-rw-r--r--test/cpp/.clang-tidy26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/cpp/.clang-tidy b/test/cpp/.clang-tidy
new file mode 100644
index 0000000..02d730c
--- /dev/null
+++ b/test/cpp/.clang-tidy
@@ -0,0 +1,26 @@
+# Copyright 2020-2022 David Robillard <d@drobilla.net>
+# SPDX-License-Identifier: 0BSD OR ISC
+
+Checks: >
+ -*-avoid-c-arrays,
+ -*-deprecated-headers,
+ -*-no-malloc,
+ -*-use-auto,
+ -bugprone-reserved-identifier,
+ -cert-dcl37-c,
+ -cert-dcl50-cpp,
+ -cert-dcl51-cpp,
+ -cppcoreguidelines-macro-usage,
+ -cppcoreguidelines-owning-memory,
+ -cppcoreguidelines-pro-bounds-array-to-pointer-decay,
+ -cppcoreguidelines-pro-bounds-pointer-arithmetic,
+ -cppcoreguidelines-pro-type-cstyle-cast,
+ -cppcoreguidelines-pro-type-vararg,
+ -hicpp-no-array-decay,
+ -hicpp-vararg,
+ -llvmlibc-callee-namespace,
+ -modernize-use-nullptr,
+ -modernize-use-using,
+ -readability-implicit-bool-conversion,
+InheritParentConfig: true
+