From e49556773d72e4485f8149152ff806451cba4af7 Mon Sep 17 00:00:00 2001 From: Chuck Atkins <chuck.atkins@kitware.com> Date: Mon, 8 May 2017 10:03:22 -0400 Subject: [PATCH] Effectively disable clang-tidy for third party libs --- thirdparty/.clang-tidy | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 thirdparty/.clang-tidy diff --git a/thirdparty/.clang-tidy b/thirdparty/.clang-tidy new file mode 100644 index 000000000..7dfec2fb6 --- /dev/null +++ b/thirdparty/.clang-tidy @@ -0,0 +1,9 @@ +Checks: -*,readability-function-size + +CheckOptions: + - key: readability-function-size.LineThreshold + value: -1 + - key: readability-function-size.StatementThreshold + value: -1 + - key: readability-function-size.BranchThreshold + value: -1 -- GitLab