aboutsummaryrefslogtreecommitdiffstats
path: root/examples/.clang-tidy
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2025-01-21 11:17:32 -0500
committerDavid Robillard <d@drobilla.net>2025-01-21 11:17:32 -0500
commit8c8c268bf2166b9049b51cde89a3330462771249 (patch)
treee4a8f33e0dff8989cea934e91ea2cb6ea0f29d8d /examples/.clang-tidy
parent19b57eae068efd0c56469a1feb4401bc9aa338b8 (diff)
downloadpugl-8c8c268bf2166b9049b51cde89a3330462771249.tar.gz
pugl-8c8c268bf2166b9049b51cde89a3330462771249.tar.bz2
pugl-8c8c268bf2166b9049b51cde89a3330462771249.zip
Separate C++ build tests to avoid C/C++ warning clashes
Diffstat (limited to 'examples/.clang-tidy')
-rw-r--r--examples/.clang-tidy7
1 files changed, 6 insertions, 1 deletions
diff --git a/examples/.clang-tidy b/examples/.clang-tidy
index cba7eda..c9cacb3 100644
--- a/examples/.clang-tidy
+++ b/examples/.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: >
@@ -12,6 +12,7 @@ Checks: >
-bugprone-reserved-identifier,
-bugprone-suspicious-string-compare,
-cert-dcl37-c,
+ -cert-dcl50-cpp,
-cert-dcl51-cpp,
-cert-err33-c,
-cert-err34-c,
@@ -27,6 +28,7 @@ Checks: >
-fuchsia-default-arguments,
-fuchsia-default-arguments-calls,
-fuchsia-overloaded-operator,
+ -google-readability-casting,
-google-runtime-references,
-hicpp-multiway-paths-covered,
-hicpp-no-array-decay,
@@ -34,7 +36,10 @@ Checks: >
-hicpp-vararg,
-llvm-header-guard,
-misc-misplaced-const,
+ -modernize-redundant-void-arg,
-modernize-use-trailing-return-type,
+ -modernize-use-using,
+ -performance-enum-size,
-performance-enum-size,
-performance-no-int-to-ptr,
-readability-function-cognitive-complexity,