From 26c94f082816b1696e7cc6ea4b2fc03a0515d24c Mon Sep 17 00:00:00 2001 From: Vaibhav Thakkar Date: Wed, 22 Nov 2023 15:56:00 +0530 Subject: [PATCH] Add check for 'm_' prefix in class members --- .clang-tidy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.clang-tidy b/.clang-tidy index 32a9cbe87..2de91ce85 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -35,6 +35,8 @@ CheckOptions: value: aNy_CasE - key: readability-identifier-naming.MemberCase value: aNy_CasE + - key: readability-identifier-naming.MemberPrefix + value: 'm_' - key: readability-identifier-naming.ParameterCase value: aNy_CasE - key: readability-identifier-naming.UnionCase