From c9325cea0aa43f328644157dee4eafe3d7b45e6f Mon Sep 17 00:00:00 2001 From: Maksim Denisov Date: Tue, 8 Oct 2024 15:34:56 +0200 Subject: Name local variables using lower_case ...and private members using lower_case_ --- .clang-tidy | 4 ++++ 1 file changed, 4 insertions(+) (limited to '.clang-tidy') diff --git a/.clang-tidy b/.clang-tidy index cd267a61..4c945a05 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -64,3 +64,7 @@ CheckOptions: - { key: readability-identifier-naming.StaticConstantPrefix, value: k } - { key: readability-identifier-naming.ValueTemplateParameterCase, value: CamelCase } - { key: readability-identifier-naming.ValueTemplateParameterPrefix, value: k } + - { key: readability-identifier-naming.VariableCase, value: lower_case } + - { key: readability-identifier-naming.ClassMemberCase, value: lower_case } + - { key: readability-identifier-naming.PrivateMemberSuffix, value: _ } + - { key: readability-identifier-naming.ProtectedMemberSuffix, value: _ } -- cgit v1.2.3