tcp-lib/.clang-tidy

15 lines
568 B
YAML

Checks: "-*,readability-identifier-naming"
CheckOptions:
readability-identifier-naming.NamespaceCase: lower_case
readability-identifier-naming.EnumCase: CamelCase
readability-identifier-naming.ClassCase: CamelCase
readability-identifier-naming.StructCase: CamelCase
readability-identifier-naming.PrivateMemberCase: camelBack
readability-identifier-naming.PrivateMemberPrefix: 'm_'
readability-identifier-naming.FunctionCase: lower_case
readability-identifier-naming.VariableCase: camelBack
readability-identifier-naming.GlobalVariablePrefix: 'g_'