diff options
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 7 |
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: '*' |