|
| 1 | +--- |
| 2 | +Checks: > |
| 3 | + clang-analyzer-*, |
| 4 | + -clang-analyzer-optin.cplusplus.VirtualCall, |
| 5 | + clang-diagnostic-*, |
| 6 | + google-*, |
| 7 | + misc-*, |
| 8 | + -misc-non-private-member-variables-in-classes, |
| 9 | + readability-*, |
| 10 | + -readability-identifier-length, |
| 11 | + -readability-magic-numbers, |
| 12 | +
|
| 13 | +CheckOptions: |
| 14 | + misc-include-cleaner.IgnoreHeaders: bits/chrono.h |
| 15 | + readability-function-cognitive-complexity.IgnoreMacros: true |
| 16 | + readability-identifier-naming.ClassCase: CamelCase |
| 17 | + readability-identifier-naming.ClassMemberCase: lower_case |
| 18 | + readability-identifier-naming.ConstexprVariableCase: CamelCase |
| 19 | + readability-identifier-naming.EnumCase: CamelCase |
| 20 | + readability-identifier-naming.EnumConstantCase: CamelCase |
| 21 | + readability-identifier-naming.FunctionCase: lower_case |
| 22 | + readability-identifier-naming.GlobalConstantCase: CamelCase |
| 23 | + readability-identifier-naming.StaticConstantCase: lower_case |
| 24 | + readability-identifier-naming.StaticVariableCase: lower_case |
| 25 | + readability-identifier-naming.MacroDefinitionCase: UPPER_CASE |
| 26 | + readability-identifier-naming.MacroDefinitionIgnoredRegexp: '^[A-Z]+(_[A-Z]+)*_$' |
| 27 | + readability-identifier-naming.PrivateMemberCase: lower_case |
| 28 | + readability-identifier-naming.ProtectedMemberCase: lower_case |
| 29 | + readability-identifier-naming.PublicMemberCase: lower_case |
| 30 | + readability-identifier-naming.PrivateMemberSuffix: _ |
| 31 | + readability-identifier-naming.ProtectedMemberSuffix: _ |
| 32 | + readability-identifier-naming.PublicMemberSuffix: '' |
| 33 | + readability-identifier-naming.NamespaceCase: lower_case |
| 34 | + readability-identifier-naming.ParameterCase: lower_case |
| 35 | + readability-identifier-naming.TypeAliasCase: CamelCase |
| 36 | + readability-identifier-naming.TypedefCase: CamelCase |
| 37 | + readability-identifier-naming.VariableCase: lower_case |
| 38 | + readability-identifier-naming.IgnoreMainLikeFunctions: true |
0 commit comments