From 8f50321256ecc1e7d433ca00baff47bd8a8bc81e Mon Sep 17 00:00:00 2001 From: Nikolas Klauser Date: Fri, 22 Nov 2024 23:20:22 +0100 Subject: [libc++] Add a .clang-tidy file to libcxx/src This disables `readability-identifier-naming` for the source files, since names don't have to by _Uglified in the source files. We currently don't enforce clang-tidy in the source files, so this is only useful to avoid a bunch of warnings when using an editor that shows the results of clang-tidy. --- libcxx/src/.clang-tidy | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 libcxx/src/.clang-tidy (limited to 'libcxx/src') diff --git a/libcxx/src/.clang-tidy b/libcxx/src/.clang-tidy new file mode 100644 index 0000000..ec8f2e0 --- /dev/null +++ b/libcxx/src/.clang-tidy @@ -0,0 +1,4 @@ +InheritParentConfig: true + +Checks: > + -readability-identifier-naming -- cgit v1.1