From 664bf62cfa34b679329d20f0d51753b32b67551f Mon Sep 17 00:00:00 2001 From: Alper Yoney Date: Tue, 7 Jan 2025 10:43:58 -0800 Subject: [PATCH] Add clang-tidy config to enable checks Summary: Enable few of the clang-tidy modernize checks for thrift. Reviewed By: iahs Differential Revision: D67900286 fbshipit-source-id: 5b8463d0fd60f2a142cfb87513575083535b1707 --- third-party/thrift/src/thrift/.clang-tidy | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 third-party/thrift/src/thrift/.clang-tidy diff --git a/third-party/thrift/src/thrift/.clang-tidy b/third-party/thrift/src/thrift/.clang-tidy new file mode 100644 index 00000000000000..7a703527529b5f --- /dev/null +++ b/third-party/thrift/src/thrift/.clang-tidy @@ -0,0 +1,9 @@ +--- +InheritParentConfig: true +Checks: ' +modernize-concat-nested-namespaces, +modernize-type-traits, +modernize-use-override, +modernize-raw-string-literal, +' +...