mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-04-09 21:54:09 +08:00
21 lines
1.2 KiB
YAML
21 lines
1.2 KiB
YAML
Checks: '-*,readability-identifier-naming'
|
|
CheckOptions:
|
|
|
|
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
|
|
- { key: readability-identifier-naming.StructCase, value: CamelCase }
|
|
|
|
- { key: readability-identifier-naming.FunctionCase, value: lower_case }
|
|
- { key: readability-identifier-naming.MemberFunctionCase, value: lower_case }
|
|
|
|
- { key: readability-identifier-naming.VariableCase, value: lower_case }
|
|
- { key: readability-identifier-naming.GlobalVariableCase, value: lower_case }
|
|
- { key: readability-identifier-naming.LocalVariableCase, value: lower_case }
|
|
- { key: readability-identifier-naming.StaticVariableCase, value: lower_case }
|
|
- { key: readability-identifier-naming.ParameterCase, value: lower_case }
|
|
|
|
- { key: readability-identifier-naming.ConstantCase, value: UPPER_CASE }
|
|
- { key: readability-identifier-naming.GlobalConstantCase, value: UPPER_CASE }
|
|
- { key: readability-identifier-naming.MemberConstantCase, value: UPPER_CASE }
|
|
- { key: readability-identifier-naming.EnumConstantCase, value: UPPER_CASE }
|
|
|
|
- { key: readability-identifier-naming.MemberCase, value: lower_case } |