|
1 | 1 | CheckOptions: |
2 | | - - key: CheckPathRegex |
3 | | - value: '.*/O2/.*' |
| 2 | + - { key: CheckPathRegex, value: ".*/O2/.*" } |
| 3 | + # Naming conventions |
| 4 | + - { key: readability-identifier-naming.ClassCase, value: CamelCase } |
| 5 | + - { key: readability-identifier-naming.ClassMemberPrefix, value: m } |
| 6 | + - { key: readability-identifier-naming.ConceptCase, value: CamelCase } |
| 7 | + - { key: readability-identifier-naming.ConstexprVariableCase, value: CamelCase } |
| 8 | + - { key: readability-identifier-naming.ConstexprVariableIgnoredRegexp, value: "^k[A-Z].*$" } # Allow "k" prefix. |
| 9 | + - { key: readability-identifier-naming.EnumCase, value: CamelCase } |
| 10 | + - { key: readability-identifier-naming.EnumConstantCase, value: CamelCase } |
| 11 | + - { key: readability-identifier-naming.EnumConstantIgnoredRegexp, value: "^k[A-Z].*$" } # Allow "k" prefix. |
| 12 | + - { key: readability-identifier-naming.FunctionCase, value: camelBack } |
| 13 | + - { key: readability-identifier-naming.MacroDefinitionCase, value: UPPER_CASE } |
| 14 | + - { key: readability-identifier-naming.MacroDefinitionIgnoredRegexp, value: "^[A-Z]+(_[A-Z]+)*_$" } # Allow the trailing underscore in header guards. |
| 15 | + - { key: readability-identifier-naming.MemberCase, value: camelBack } |
| 16 | + - { key: readability-identifier-naming.NamespaceCase, value: lower_case } |
| 17 | + - { key: readability-identifier-naming.ParameterCase, value: camelBack } |
| 18 | + - { key: readability-identifier-naming.StructCase, value: CamelCase } |
| 19 | + - { key: readability-identifier-naming.TemplateParameterCase, value: CamelCase } |
| 20 | + - { key: readability-identifier-naming.TypeAliasCase, value: CamelCase } |
| 21 | + - { key: readability-identifier-naming.TypedefCase, value: CamelCase } |
| 22 | + - { key: readability-identifier-naming.TypeTemplateParameterCase, value: CamelCase } |
| 23 | + - { key: readability-identifier-naming.VariableCase, value: camelBack } |
0 commit comments