10 lines
628 B
YAML
10 lines
628 B
YAML
Checks: '-*,readability-identifier-naming'
|
|
CheckOptions:
|
|
- { key: readability-identifier-naming.NamespaceCase, value: lower_case }
|
|
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
|
|
- { key: readability-identifier-naming.PrivateMemberPrefix, value: _ }
|
|
- { key: readability-identifier-naming.StructCase, value: CamelCase }
|
|
- { key: readability-identifier-naming.FunctionCase, value: camelBack }
|
|
- { key: readability-identifier-naming.VariableCase, value: camelBack }
|
|
- { key: readability-identifier-naming.GlobalConstantCase, value: UPPER_CASE }
|