aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.clang-tidy4
-rw-r--r--test/.clang-tidy3
-rw-r--r--test/cpp/.clang-tidy5
3 files changed, 7 insertions, 5 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 4033a55..013eda7 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -1,4 +1,4 @@
-# Copyright 2020-2024 David Robillard <d@drobilla.net>
+# Copyright 2020-2025 David Robillard <d@drobilla.net>
# SPDX-License-Identifier: 0BSD OR ISC
Checks: >
@@ -11,7 +11,7 @@ Checks: >
-bugprone-macro-parentheses,
-clang-diagnostic-unused-function,
-clang-diagnostic-unused-macros,
- -llvmlibc-restrict-system-libc-headers,
+ -llvmlibc-*,
-misc-include-cleaner,
-performance-no-int-to-ptr,
-readability-identifier-length,
diff --git a/test/.clang-tidy b/test/.clang-tidy
index f6fe1d6..ef4d61f 100644
--- a/test/.clang-tidy
+++ b/test/.clang-tidy
@@ -1,9 +1,10 @@
-# Copyright 2020-2022 David Robillard <d@drobilla.net>
+# Copyright 2020-2025 David Robillard <d@drobilla.net>
# SPDX-License-Identifier: 0BSD OR ISC
Checks: >
-*-else-after-return,
-bugprone-easily-swappable-parameters,
+ -bugprone-multi-level-implicit-pointer-conversion,
-bugprone-suspicious-include,
-cert-err33-c,
-clang-diagnostic-unused-parameter,
diff --git a/test/cpp/.clang-tidy b/test/cpp/.clang-tidy
index 02d730c..1fe1f27 100644
--- a/test/cpp/.clang-tidy
+++ b/test/cpp/.clang-tidy
@@ -1,4 +1,4 @@
-# Copyright 2020-2022 David Robillard <d@drobilla.net>
+# Copyright 2020-2025 David Robillard <d@drobilla.net>
# SPDX-License-Identifier: 0BSD OR ISC
Checks: >
@@ -17,10 +17,11 @@ Checks: >
-cppcoreguidelines-pro-type-cstyle-cast,
-cppcoreguidelines-pro-type-vararg,
-hicpp-no-array-decay,
+ -hicpp-use-nullptr,
-hicpp-vararg,
-llvmlibc-callee-namespace,
-modernize-use-nullptr,
-modernize-use-using,
+ -performance-enum-size,
-readability-implicit-bool-conversion,
InheritParentConfig: true
-