From d70e1f12765fd6bb644ffb561dff9a31c522308e Mon Sep 17 00:00:00 2001 From: "Peyton, Jonathan L" Date: Fri, 4 Jun 2021 14:26:08 -0500 Subject: [PATCH] [OpenMP][runtime] add .clang-tidy file Use same checks as compiler-rt which removes checks for readability-* and llvm-header style. Differential Revision: https://reviews.llvm.org/D103711 --- openmp/runtime/.clang-tidy | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 openmp/runtime/.clang-tidy diff --git a/openmp/runtime/.clang-tidy b/openmp/runtime/.clang-tidy new file mode 100644 index 000000000000..4bad5ef21620 --- /dev/null +++ b/openmp/runtime/.clang-tidy @@ -0,0 +1,2 @@ +# Checks enabled in the top-level .clang-tidy minus readability-identifier-naming and llvm-header-guard. +Checks: '-*,clang-diagnostic-*,llvm-*,-llvm-header-guard,misc-*,-misc-unused-parameters,-misc-non-private-member-variables-in-classes'