From 966e66e88e8c90fedae80aa0b595ba9ed22f60e6 Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Sun, 3 Jul 2022 10:42:41 +0100 Subject: [PATCH] .clang-tidy: -misc-non-private-member-variables-in-classes Following the discussion in the chat --- Source/.clang-tidy | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/.clang-tidy b/Source/.clang-tidy index b86fbcaff..5f6e82aa9 100644 --- a/Source/.clang-tidy +++ b/Source/.clang-tidy @@ -47,6 +47,7 @@ Checks: > portability-*, readability-*, -readability-magic-numbers, + -misc-non-private-member-variables-in-classes, -modernize-avoid-c-arrays, -modernize-use-trailing-return-type, -modernize-concat-nested-namespaces, @@ -87,6 +88,4 @@ CheckOptions: # `int8_t` aren't used as chars, disable misleading warning. - { key: bugprone-signed-char-misuse.CharTypdefsToIgnore, value: "std::int8_t" } - - { key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic, value: true } - - { key: readability-identifier-length.MinimumLoopCounterNameLength, value: 1 }