From 48f14267e5ab2b251d2fc520b2e6da1bf92ebba6 Mon Sep 17 00:00:00 2001 From: Alexander Shaduri Date: Tue, 5 Nov 2024 14:00:50 +0400 Subject: [PATCH] Hide too noisy clang-tidy warning. --- .clang-tidy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.clang-tidy b/.clang-tidy index d4ce703..af96e9d 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -14,6 +14,7 @@ # cppcoreguidelines-pro-type-vararg is triggered by hz::string_sprintf(). # cppcoreguidelines-pro-bounds-array-to-pointer-decay is triggered by va_start in hz::string_sprintf(). # cppcoreguidelines-pro-bounds-pointer-arithmetic is useless (triggered by argv) until we have std::span. +# misc-include-cleaner does not really work. # misc-no-recursion is too noisy. # modernize-raw-string-literal is very noisy. # modernize-use-trailing-return-type is contrary to our style. @@ -56,6 +57,7 @@ Checks: > -llvm-*, -llvmlibc-*, misc-*, + -misc-include-cleaner, -misc-no-recursion, modernize-*, -modernize-use-trailing-return-type,