aboutsummaryrefslogtreecommitdiffstats
path: root/.clang-tidy
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-10-01 18:25:32 -0400
committerDavid Robillard <d@drobilla.net>2024-10-01 18:25:44 -0400
commit8138e876cedf396a7dc90409ba70d8f2a5659ecb (patch)
tree41c5d368320a1d11d5be387f700a6bb76001f1b0 /.clang-tidy
parente47873e863b7fb6bb081681f1944135c1c1cb61a (diff)
downloadchilbert-8138e876cedf396a7dc90409ba70d8f2a5659ecb.tar.gz
chilbert-8138e876cedf396a7dc90409ba70d8f2a5659ecb.tar.bz2
chilbert-8138e876cedf396a7dc90409ba70d8f2a5659ecb.zip
Suppress new warnings in clang-tidy 18
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy7
1 files changed, 6 insertions, 1 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 0688e7c..64946df 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -1,4 +1,4 @@
-# Copyright 2020-2022 David Robillard <d@drobilla.net>
+# Copyright 2020-2024 David Robillard <d@drobilla.net>
# SPDX-License-Identifier: 0BSD OR GPL-2.0-or-later
Checks: >
@@ -9,7 +9,9 @@ Checks: >
-*-no-malloc,
-*-non-private-member-variables-in-classes,
-altera-*,
+ -bugprone-assignment-in-if-condition,
-bugprone-easily-swappable-parameters,
+ -cppcoreguidelines-avoid-do-while,
-cppcoreguidelines-owning-memory,
-cppcoreguidelines-pro-bounds-constant-array-index,
-cppcoreguidelines-pro-bounds-pointer-arithmetic,
@@ -19,7 +21,10 @@ Checks: >
-google-runtime-int,
-google-runtime-references,
-llvmlibc-*,
+ -misc-include-cleaner,
-modernize-use-trailing-return-type,
+ -readability-avoid-const-params-in-decls,
+ -readability-convert-member-functions-to-static,
-readability-identifier-length,
-readability-implicit-bool-conversion,
WarningsAsErrors: '*'