diff options
author | Nikolas Klauser <nikolasklauser@berlin.de> | 2024-11-22 23:20:22 +0100 |
---|---|---|
committer | Nikolas Klauser <nikolasklauser@berlin.de> | 2024-11-22 23:23:59 +0100 |
commit | 8f50321256ecc1e7d433ca00baff47bd8a8bc81e (patch) | |
tree | fcdf46f53bad2705468aa88e68440685643b905c /libcxx/src | |
parent | 0ffdaf445e72a152cc0707c9885046e55127af31 (diff) | |
download | llvm-8f50321256ecc1e7d433ca00baff47bd8a8bc81e.zip llvm-8f50321256ecc1e7d433ca00baff47bd8a8bc81e.tar.gz llvm-8f50321256ecc1e7d433ca00baff47bd8a8bc81e.tar.bz2 |
[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.
Diffstat (limited to 'libcxx/src')
-rw-r--r-- | libcxx/src/.clang-tidy | 4 |
1 files changed, 4 insertions, 0 deletions
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 |