Ed Tanous | b0bb6f2 | 2020-09-28 16:43:15 -0700 | [diff] [blame] | 1 | Checks: '-*,readability-identifier-naming' |
| 2 | WarningsAsErrors: '-*,readability-identifier-naming' |
| 3 | HeaderFilterRegex: '.*' |
| 4 | CheckOptions: |
| 5 | - { key: readability-identifier-naming.ClassCase, value: CamelCase } |
| 6 | - { key: readability-identifier-naming.VariableCase, value: camelBack } |
| 7 | - { key: readability-identifier-naming.FunctionCase, value: camelBack } |
| 8 | - { key: readability-identifier-naming.ParameterCase, value: lowerCamel } |
| 9 | - { key: readability-identifier-naming.NamespaceCase, value: lower_case } |
| 10 | - { key: readability-identifier-naming.StructCase, value: CamelCase } |
| 11 | |