From 2319e2d7be82150568f9ba01ca03303d9af269a7 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Thu, 21 Aug 2025 19:53:34 +0200 Subject: [PATCH] Revert "Enable more checks in clang-tidy around naming" This reverts commit 24f0fcdff773b1390ad473cf4c4a73016fb9814e. --- .clang-tidy | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.clang-tidy b/.clang-tidy index 60dff1777..b4e660b85 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -106,26 +106,4 @@ CheckOptions: value: true - key: bugprone-empty-catch.IgnoreCatchWithKeywords value: "@todo;@fixme;exception ignored on purpose" - - key: readability-identifier-naming.ClassCase - value: lower_case - - key: readability-identifier-naming.ClassSuffix - value: _t - - key: readability-identifier-naming.PrivateMemberPrefix - value: m_ - - key: readability-identifier-naming.StructCase - value: lower_case - - key: readability-identifier-naming.EnumCase - value: lower_case - - key: readability-identifier-naming.FunctionCase - value: lower_case - - key: readability-identifier-naming.FunctionIgnoredRegexp - value: luaX.* - - key: readability-identifier-naming.VariableCase - value: lower_case - - key: readability-identifier-naming.ConstexprVariableCase - value: UPPER_CASE - - key: readability-identifier-naming.GlobalConstantCase - value: UPPER_CASE - - key: readability-identifier-naming.NamespaceCase - value: lower_case ...