2021-02-06 03:44:19 +00:00
|
|
|
FormatStyle: google
|
2021-02-02 07:31:27 +00:00
|
|
|
|
2021-02-06 03:44:19 +00:00
|
|
|
Checks: '-*,clang-diagnostic-*,llvm-*,misc-*,-misc-unused-parameters,-misc-non-private-member-variables-in-classes,readability-identifier-naming,cppcoreguidelines-narrowing-conversions'
|
2021-02-02 07:31:27 +00:00
|
|
|
CheckOptions:
|
2021-02-06 03:44:19 +00:00
|
|
|
- { key: readability-identifier-naming.NamespaceCase, value: lower_case }
|
|
|
|
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
|
|
|
|
- { key: readability-identifier-naming.StructCase, value: CamelCase }
|
|
|
|
- { key: readability-identifier-naming.TemplateParameterCase, value: CamelCase }
|
|
|
|
- { key: readability-identifier-naming.FunctionCase, value: aNy_CasE }
|
|
|
|
- { key: readability-identifier-naming.VariableCase, value: lower_case }
|
|
|
|
- { key: readability-identifier-naming.MemberCase, value: lower_case }
|
|
|
|
- { key: readability-identifier-naming.PrivateMemberPrefix, value: _ }
|
|
|
|
- { key: readability-identifier-naming.ProtectedMemberPrefix, value: _ }
|
|
|
|
- { key: readability-identifier-naming.EnumConstantCase, value: CamelCase }
|
|
|
|
- { key: readability-identifier-naming.ConstexprVariableCase, value: CamelCase }
|
|
|
|
- { key: readability-identifier-naming.GlobalConstantCase, value: CamelCase }
|
|
|
|
- { key: readability-identifier-naming.MemberConstantCase, value: CamelCase }
|
|
|
|
- { key: readability-identifier-naming.StaticConstantCase, value: CamelCase }
|