[libcxx-commits] [libcxx] b63ac56 - [libc++] Update clang-tidy configuration for the tests

Nikolas Klauser via libcxx-commits libcxx-commits at lists.llvm.org
Thu Aug 3 09:41:21 PDT 2023


Author: Nikolas Klauser
Date: 2023-08-03T09:40:48-07:00
New Revision: b63ac56ac40c0e4f16bd414fb5b5483a574228d8

URL: https://github.com/llvm/llvm-project/commit/b63ac56ac40c0e4f16bd414fb5b5483a574228d8
DIFF: https://github.com/llvm/llvm-project/commit/b63ac56ac40c0e4f16bd414fb5b5483a574228d8.diff

LOG: [libc++] Update clang-tidy configuration for the tests

This is to avoid clang-tidy complaining all over the tests that the naming is wrong.

Added: 
    

Modified: 
    libcxx/test/.clang-tidy

Removed: 
    


################################################################################
diff  --git a/libcxx/test/.clang-tidy b/libcxx/test/.clang-tidy
index c0f9695bf5a025..6c91687b59ad20 100644
--- a/libcxx/test/.clang-tidy
+++ b/libcxx/test/.clang-tidy
@@ -3,3 +3,9 @@ InheritParentConfig: true
 CheckOptions:
   - key:   readability-identifier-naming.ParameterPrefix
     value: ""
+  - key:   readability-identifier-naming.PrivateMemberPrefix
+    value: ""
+  - key:   readability-identifier-naming.LocalVariablePrefix
+    value: ""
+  - key:   readability-identifier-naming.TemplateParameterPrefix
+    value: ""


        


More information about the libcxx-commits mailing list