From: Joel Rosdahl Date: Mon, 28 Jun 2021 19:20:42 +0000 (+0200) Subject: Disable some clang-tidy checks that don’t contribute much X-Git-Tag: v4.4~175 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d4c56113349b763c29db8ff9eb1386cd59d555bc;p=thirdparty%2Fccache.git Disable some clang-tidy checks that don’t contribute much --- diff --git a/src/.clang-tidy b/src/.clang-tidy index f30529dc0..3781fd601 100644 --- a/src/.clang-tidy +++ b/src/.clang-tidy @@ -69,11 +69,11 @@ CheckOptions: # If you hit a limit, please consider changing the code instead of the limit. - key: readability-function-size.LineThreshold - value: 700 + value: 999999 - key: readability-function-size.StatementThreshold value: 999999 - key: readability-function-size.BranchThreshold - value: 170 + value: 999999 - key: readability-function-size.ParameterThreshold value: 6 - key: readability-function-size.NestingThreshold