[compiler-rt] Add .clang-tidy with customization to disable readability-identifier...
authorFangrui Song <i@maskray.me>
Fri, 4 Sep 2020 23:05:20 +0000 (16:05 -0700)
committerFangrui Song <i@maskray.me>
Fri, 4 Sep 2020 23:05:20 +0000 (16:05 -0700)
commita5d6af421d625c78bfb0f63830b51863ff0f0877
treef9d6aecfadf84f6db58cfeb2c6b5953fb011bf51
parent5e04b539c835cdc810cf0f75e87ca0c9b81d00e4
[compiler-rt] Add .clang-tidy with customization to disable readability-identifier-naming

Copied from lldb/.clang-tidy (D75810).

Most compiler-rt code actually uses variableName or variable_name but not VariableName.
Lots of functions use `__function_name` and FunctionName instead of functionName.
Just exclude readability-identifier-naming.
compiler-rt/.clang-tidy [new file with mode: 0644]