diff --git a/.clang-tidy b/.clang-tidy index a4be83e..1fc8f8e 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -28,6 +28,14 @@ CheckOptions: - { key: readability-identifier-naming.ConstexprVariableCase, value: UPPER_CASE } - { key: readability-identifier-naming.LocalConstantCase, value: UPPER_CASE } + # Constantes estáticas dentro de clases con sufijo _ + - { key: readability-identifier-naming.ClassConstantCase, value: UPPER_CASE } + - { key: readability-identifier-naming.ClassConstantSuffix, value: _ } + + # Constexpr variables con sufijo _ + - { key: readability-identifier-naming.ConstexprVariableCase, value: UPPER_CASE } + - { key: readability-identifier-naming.ConstexprVariableSuffix, value: _ } + # Clases, structs y enums en CamelCase - { key: readability-identifier-naming.ClassCase, value: CamelCase } - { key: readability-identifier-naming.StructCase, value: CamelCase }