[DebugInfo][InstrRef] Don't fire assertions if debug-info is faulty
[llvm-project.git] / libc / .clang-tidy
blob741b63b18d6d57e9ea807bbe1094970afd474add
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
12     value:           "^_[A-Za-z0-9_]+$"
13   - key:             readability-identifier-naming.VariableCase
14     value:           lower_case
15   - key:             readability-identifier-naming.VariableIgnoredRegexp
16     value:           "^_[A-Za-z0-9_]+$"
17   - key:             readability-identifier-naming.FunctionCase
18     value:           lower_case
19   - key:             readability-identifier-naming.FunctionIgnoredRegexp
20     value:           "^_[A-Za-z0-9_]+$"
21   - key:             readability-identifier-naming.GlobalConstantCase
22     value:           UPPER_CASE
23   - key:             readability-identifier-naming.ConstexprVariableCase
24     value:           UPPER_CASE
25   - key:             readability-identifier-naming.GetConfigPerFile
26     value:           true