Siva Chandra Reddy | a5a79f6 | 2021-12-08 07:02:48 | [diff] [blame] | 1 | InheritParentConfig: false |
| 2 | Checks: 'readability-identifier-naming' |
| 3 | HeaderFilterRegex: '.*' |
| 4 | CheckOptions: |
| 5 | - key: readability-identifier-naming.ClassCase |
| 6 | value: CamelCase |
| 7 | - key: readability-identifier-naming.StructCase |
| 8 | value: aNy_CasE |
| 9 | - key: readability-identifier-naming.MemberCase |
| 10 | value: lower_case |
| 11 | - key: readability-identifier-naming.MemberIgnoredRegexp |
Tue Ly | e35c714 | 2023-03-14 14:50:02 | [diff] [blame] | 12 | value: "_?(_[A-Za-z0-9]+)*" |
Siva Chandra Reddy | a5a79f6 | 2021-12-08 07:02:48 | [diff] [blame] | 13 | - key: readability-identifier-naming.VariableCase |
| 14 | value: lower_case |
| 15 | - key: readability-identifier-naming.VariableIgnoredRegexp |
Tue Ly | e35c714 | 2023-03-14 14:50:02 | [diff] [blame] | 16 | value: "_?(_[A-Za-z0-9]+)*" |
Siva Chandra Reddy | a5a79f6 | 2021-12-08 07:02:48 | [diff] [blame] | 17 | - key: readability-identifier-naming.FunctionCase |
| 18 | value: lower_case |
| 19 | - key: readability-identifier-naming.FunctionIgnoredRegexp |
Tue Ly | e35c714 | 2023-03-14 14:50:02 | [diff] [blame] | 20 | value: "_?(_[A-Za-z0-9]+)*" |
Siva Chandra Reddy | 75d2fcb | 2022-01-19 08:33:05 | [diff] [blame] | 21 | - key: readability-identifier-naming.GlobalConstantCase |
| 22 | value: UPPER_CASE |
Tue Ly | e35c714 | 2023-03-14 14:50:02 | [diff] [blame] | 23 | - key: readability-identifier-naming.LocalConstantIgnoredRegexp |
| 24 | value: "[A-Z]+[A-Z0-9]*(_[A-Z0-9]+)*" |
| 25 | - key: readability-identifier-naming.ClassConstantCase |
| 26 | value: UPPER_CASE |
Siva Chandra Reddy | a5a79f6 | 2021-12-08 07:02:48 | [diff] [blame] | 27 | - key: readability-identifier-naming.ConstexprVariableCase |
| 28 | value: UPPER_CASE |
Nick Desaulniers | 6f8d826 | 2024-02-28 22:52:02 | [diff] [blame] | 29 | - key: readability-identifier-naming.ConstexprFunctionCase |
| 30 | value: lower_case |
Siva Chandra Reddy | a5a79f6 | 2021-12-08 07:02:48 | [diff] [blame] | 31 | - key: readability-identifier-naming.GetConfigPerFile |
| 32 | value: true |