From 3ac2f056719ed820a2e261140b84732238a1ad19 Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Tue, 17 Oct 2023 08:26:06 +0100 Subject: [PATCH] Disable a couple of clang-tidy checks These are very noisy and not particularly helpful. --- Source/.clang-tidy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/.clang-tidy b/Source/.clang-tidy index 5f6e82aa924..6a93dcc0df0 100644 --- a/Source/.clang-tidy +++ b/Source/.clang-tidy @@ -46,6 +46,8 @@ Checks: > performance-*, portability-*, readability-*, + -readability-identifier-length, + -bugprone-easily-swappable-parameters, -readability-magic-numbers, -misc-non-private-member-variables-in-classes, -modernize-avoid-c-arrays,