18 lines
509 B
YAML
18 lines
509 B
YAML
Checks: 'readability-identifier-naming'
|
|
|
|
CheckOptions:
|
|
- key: readability-identifier-naming.MethodCase
|
|
value: PascalCase
|
|
|
|
- key: readability-identifier-naming.StructMemberCase
|
|
value: lower_case
|
|
|
|
- key: readability-identifier-naming.PrivateMemberCase
|
|
value: camelCase
|
|
- key: readability-identifier-naming.PrivateMemberPrefix
|
|
value: m_
|
|
|
|
- key: readability-identifier-naming.ClassCase
|
|
value: PascalCase
|
|
- key: readability-identifier-naming.StructCase
|
|
value: PascalCase |