From 98a11e2ebd8a96bd05becc9be3da787869947c40 Mon Sep 17 00:00:00 2001 From: Robert Schulze Date: Fri, 2 Dec 2022 09:18:05 +0000 Subject: [PATCH] Temporarily disable misc-* due to being too slow --- .clang-tidy | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.clang-tidy b/.clang-tidy index 0d2519e9fea..e9451272681 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -141,6 +141,19 @@ Checks: '*, -readability-use-anyofallof, -zirkon-*, + + -misc-*, # temporarily disabled due to being too slow + # also disable checks in other categories which are aliases of checks in misc-*: + # https://releases.llvm.org/15.0.0/tools/clang/tools/extra/docs/clang-tidy/checks/list.html + -cert-dcl54-cpp, # alias of misc-new-delete-overloads + -hicpp-new-delete-operators, # alias of misc-new-delete-overloads + -cert-fio38-c, # alias of misc-non-copyable-objects + -cert-dcl03-c, # alias of misc-static-assert + -hicpp-static-assert, # alias of misc-static-assert + -cert-err09-cpp, # alias of misc-throw-by-value-catch-by-reference + -cert-err61-cpp, # alias of misc-throw-by-value-catch-by-reference + -cppcoreguidelines-c-copy-assignment-signature, # alias of misc-unconventional-assign-operator + -cppcoreguidelines-non-private-member-variables-in-classes, # alias of misc-non-private-member-variables-in-classes ' WarningsAsErrors: '*'