2023-05-02 17:12:32 +00:00
|
|
|
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'
|
2019-01-29 16:43:16 +00:00
|
|
|
CheckOptions:
|
|
|
|
- key: readability-identifier-naming.ClassCase
|
|
|
|
value: CamelCase
|
|
|
|
- key: readability-identifier-naming.EnumCase
|
|
|
|
value: CamelCase
|
|
|
|
- key: readability-identifier-naming.FunctionCase
|
|
|
|
value: camelBack
|
2022-02-01 10:14:07 +00:00
|
|
|
# Exclude from scanning as this is an exported symbol used for fuzzing
|
|
|
|
# throughout the code base.
|
|
|
|
- key: readability-identifier-naming.FunctionIgnoredRegexp
|
|
|
|
value: "LLVMFuzzerTestOneInput"
|
2019-01-29 16:43:16 +00:00
|
|
|
- key: readability-identifier-naming.MemberCase
|
|
|
|
value: CamelCase
|
|
|
|
- key: readability-identifier-naming.ParameterCase
|
|
|
|
value: CamelCase
|
|
|
|
- key: readability-identifier-naming.UnionCase
|
|
|
|
value: CamelCase
|
|
|
|
- key: readability-identifier-naming.VariableCase
|
|
|
|
value: CamelCase
|
2020-01-31 16:49:13 +00:00
|
|
|
- key: readability-identifier-naming.IgnoreMainLikeFunctions
|
|
|
|
value: 1
|
2022-01-03 21:41:32 +00:00
|
|
|
- key: readability-redundant-member-init.IgnoreBaseInCopyConstructors
|
|
|
|
value: 1
|
2022-01-24 04:32:52 +00:00
|
|
|
- key: modernize-use-default-member-init.UseAssignment
|
|
|
|
value: 1
|