From 2d7a3a4dd9149a9a36d6708da14c70861b5b26ff Mon Sep 17 00:00:00 2001 From: Alexander Shaduri Date: Wed, 16 Feb 2022 17:30:06 +0400 Subject: [PATCH] Updated clang-tidy configuration to exclude noisy warnings. --- .clang-tidy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.clang-tidy b/.clang-tidy index 0c58913..fbc80fc 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -18,6 +18,7 @@ # readability-convert-member-functions-to-static is triggered for many callbacks. # readability-function-cognitive-complexity needed by UI constructors. # readability-isolate-declaration is noisy. +# readability-identifier-length is too noisy. Checks: > @@ -63,6 +64,7 @@ Checks: > -readability-function-cognitive-complexity, -readability-isolate-declaration, -readability-magic-numbers, + -readability-identifier-length, -zircon-* WarningsAsErrors: ''