summaryrefslogtreecommitdiff
path: root/.clang-tidy
diff options
context:
space:
mode:
authorChristian Kühnel <kuhnel@google.com>2022-02-01 10:14:07 +0000
committerChristian Kühnel <kuhnel@google.com>2022-02-01 13:31:52 +0000
commit8edfc2f814fe107bf31e3470478aa9bcacdf5aed (patch)
treed682461aae49d8e0fcf702ac93264dea11b42303 /.clang-tidy
parentfa7834a55484f9a7add76750a448184c333fba4b (diff)
downloadllvm-8edfc2f814fe107bf31e3470478aa9bcacdf5aed.tar.gz
[clangd] Cleanup of readability-identifier-naming
Auto-generated patch based on clang-tidy readability-identifier-naming. Only some manual cleanup for `extern "C"` declarations and a GTest change was required. I'm not sure if this cleanup is actually very useful. It cleans up clang-tidy findings to the number of warnings from clang-tidy should be lower. Since it was easy to do and required only little cleanup I thought I'd upload it for discussion. One pattern that keeps recurring: Test **matchers** are also supposed to start with a lowercase letter as per LLVM convention. However GTest naming convention for matchers start with upper case. I would propose to keep stay consistent with the GTest convention there. However that would imply a lot of `//NOLINT` throughout these files. To re-product this patch run: ``` run-clang-tidy -checks="-*,readability-identifier-naming" -fix -format ./clang-tools-extra/clangd ``` To convert the macro names, I was using this script with some manual cleanup afterwards: https://gist.github.com/ChristianKuehnel/a01cc4362b07c58281554ab46235a077 Differential Revision: https://reviews.llvm.org/D115634
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy4
1 files changed, 4 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 879c3661b302..f3710d19f94f 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -6,6 +6,10 @@ CheckOptions:
value: CamelCase
- key: readability-identifier-naming.FunctionCase
value: camelBack
+ # Exclude from scanning as this is an exported symbol used for fuzzing
+ # throughout the code base.
+ - key: readability-identifier-naming.FunctionIgnoredRegexp
+ value: "LLVMFuzzerTestOneInput"
- key: readability-identifier-naming.MemberCase
value: CamelCase
- key: readability-identifier-naming.ParameterCase