From 1658dd99a962fd844441f7a85664cd46a60f442c Mon Sep 17 00:00:00 2001 From: wmayer Date: Fri, 2 Sep 2022 13:42:42 +0200 Subject: [PATCH] Clang: [skip ci] set minimum name length to 2 --- .clang-tidy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.clang-tidy b/.clang-tidy index cc81d474a7..d4e7ece065 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -283,7 +283,7 @@ CheckOptions: - key: readability-identifier-naming.AggressiveDependentMemberLookup value: 'false' - key: readability-identifier-length.MinimumParameterNameLength - value: '3' + value: '2' - key: modernize-use-emplace.TupleTypes value: '::std::pair;::std::tuple' - key: modernize-use-emplace.TupleMakeFunctions @@ -417,7 +417,7 @@ CheckOptions: - key: cppcoreguidelines-narrowing-conversions.WarnWithinTemplateInstantiation value: 'false' - key: readability-identifier-length.MinimumVariableNameLength - value: '3' + value: '2' - key: cppcoreguidelines-narrowing-conversions.WarnOnEquivalentBitWidth value: 'true' - key: cppcoreguidelines-non-private-member-variables-in-classes.IgnorePublicMemberVariables