From 3d5307e3bdc58ed5ad384c30d6523a4e450db88e Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Sun, 8 May 2022 11:53:03 +0100 Subject: [PATCH] .clang-tidy: Allow single-char loop variables x, y, i, j, etc --- Source/.clang-tidy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/.clang-tidy b/Source/.clang-tidy index 3ed1f402b..b86fbcaff 100644 --- a/Source/.clang-tidy +++ b/Source/.clang-tidy @@ -88,3 +88,5 @@ CheckOptions: - { 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 }