Mehdi Amini | 64faa52 | 2024-03-05 20:14:09 | [diff] [blame] | 1 | Checks: '-*,clang-diagnostic-*,llvm-*,misc-*,-misc-const-correctness,-misc-unused-parameters,-misc-non-private-member-variables-in-classes,-misc-no-recursion,-misc-use-anonymous-namespace,readability-identifier-naming,-misc-include-cleaner' |
James Y Knight | 149be18 | 2019-01-29 16:43:16 | [diff] [blame] | 2 | CheckOptions: |
| 3 | - key: readability-identifier-naming.ClassCase |
| 4 | value: CamelCase |
| 5 | - key: readability-identifier-naming.EnumCase |
| 6 | value: CamelCase |
| 7 | - key: readability-identifier-naming.FunctionCase |
| 8 | value: camelBack |
Christian Kühnel | 8edfc2f | 2022-02-01 10:14:07 | [diff] [blame] | 9 | # Exclude from scanning as this is an exported symbol used for fuzzing |
| 10 | # throughout the code base. |
| 11 | - key: readability-identifier-naming.FunctionIgnoredRegexp |
| 12 | value: "LLVMFuzzerTestOneInput" |
James Y Knight | 149be18 | 2019-01-29 16:43:16 | [diff] [blame] | 13 | - key: readability-identifier-naming.MemberCase |
| 14 | value: CamelCase |
| 15 | - key: readability-identifier-naming.ParameterCase |
| 16 | value: CamelCase |
| 17 | - key: readability-identifier-naming.UnionCase |
| 18 | value: CamelCase |
| 19 | - key: readability-identifier-naming.VariableCase |
| 20 | value: CamelCase |
Nathan James | f99133e | 2020-01-31 16:49:13 | [diff] [blame] | 21 | - key: readability-identifier-naming.IgnoreMainLikeFunctions |
| 22 | value: 1 |
Kazu Hirata | 1bb65bd | 2022-01-03 21:41:32 | [diff] [blame] | 23 | - key: readability-redundant-member-init.IgnoreBaseInCopyConstructors |
| 24 | value: 1 |
Kazu Hirata | 943aa1b | 2022-01-24 04:32:52 | [diff] [blame] | 25 | - key: modernize-use-default-member-init.UseAssignment |
| 26 | value: 1 |