brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.4 KiB · 2cda1b8 Raw
40 lines · plain
1HeaderFilterRegex: ''2Checks: >3  -*,4  clang-diagnostic-*,5  llvm-*,6  misc-*,7  -misc-const-correctness,8  -misc-include-cleaner,9  -misc-no-recursion,10  -misc-non-private-member-variables-in-classes,11  -misc-unused-parameters,12  -misc-use-anonymous-namespace,13  readability-identifier-naming14 15CheckOptions:16  - key:             readability-identifier-naming.ClassCase17    value:           CamelCase18  - key:             readability-identifier-naming.EnumCase19    value:           CamelCase20  - key:             readability-identifier-naming.FunctionCase21    value:           camelBack22  # Exclude from scanning as this is an exported symbol used for fuzzing23  # throughout the code base.24  - key:             readability-identifier-naming.FunctionIgnoredRegexp25    value:           "LLVMFuzzerTestOneInput"26  - key:             readability-identifier-naming.MemberCase27    value:           CamelCase28  - key:             readability-identifier-naming.ParameterCase29    value:           CamelCase30  - key:             readability-identifier-naming.UnionCase31    value:           CamelCase32  - key:             readability-identifier-naming.VariableCase33    value:           CamelCase34  - key:             readability-identifier-naming.IgnoreMainLikeFunctions35    value:           136  - key:             readability-redundant-member-init.IgnoreBaseInCopyConstructors37    value:           138  - key:             modernize-use-default-member-init.UseAssignment39    value:           140