From 6832ded200f7a563b9e2cf81148fd26fdb064fdd Mon Sep 17 00:00:00 2001 From: Maksim Denisov Date: Tue, 8 Oct 2024 09:16:13 +0200 Subject: Name classes, structs and enums using CamelCase. --- .clang-tidy | 3 +++ 1 file changed, 3 insertions(+) (limited to '.clang-tidy') diff --git a/.clang-tidy b/.clang-tidy index cb4ed9fc..a536a22b 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -50,3 +50,6 @@ Checks: >- WarningsAsErrors: '*' CheckOptions: - { key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic, value: '1' } + - { key: readability-identifier-naming.ClassCase, value: CamelCase } + - { key: readability-identifier-naming.EnumCase, value: CamelCase } + - { key: readability-identifier-naming.StructCase, value: CamelCase } -- cgit v1.2.3