From 52ed2ea17a1c99a3364d2dd1942d128d353dda43 Mon Sep 17 00:00:00 2001 From: Eduardo Menges Mattje Date: Mon, 13 May 2024 16:23:38 -0300 Subject: [PATCH] chore: Added CamelCase style for Methods --- .clang-tidy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.clang-tidy b/.clang-tidy index 7e41dbc2..9015ac58 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -66,5 +66,7 @@ CheckOptions: - { key: readability-identifier-naming.ClassMemberPrefix, value: m_ } + - { key: readability-identifier-naming.MethodCase, value: CamelCase } + - { key: modernize-use-std-print.ReplacementPrintFunction, value: "fmt::print"} - { key: modernize-use-std-print.ReplacementPrintlnFunction, value: "fmt::println"}