[clang][dataflow][NFC] Fix stale comments. (#71654)
[llvm-project.git] / libc / .clang-tidy
blob5adada9a3f59a81abe4587c0c122f79662b32b26
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.LocalConstantIgnoredRegexp
24     value:           "[A-Z]+[A-Z0-9]*(_[A-Z0-9]+)*"
25   - key:             readability-identifier-naming.ClassConstantCase
26     value:           UPPER_CASE
27   - key:             readability-identifier-naming.ConstexprVariableCase
28     value:           UPPER_CASE
29   - key:             readability-identifier-naming.GetConfigPerFile
30     value:           true