From 0eac63787060c6d7eaa0643322f4e72fb0e8c458 Mon Sep 17 00:00:00 2001 From: Daniel Agar Date: Wed, 1 Feb 2017 14:44:02 -0500 Subject: [PATCH] clang-tidy relax function-size.LineThreshold --- .clang-tidy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.clang-tidy b/.clang-tidy index 1d8bd965bf..cef78791e3 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -212,7 +212,7 @@ CheckOptions: - key: google-readability-function-size.BranchThreshold value: '600' - key: google-readability-function-size.LineThreshold - value: '3000' + value: '4000' - key: google-readability-function-size.StatementThreshold value: '4000' - key: google-readability-namespace-comments.ShortNamespaceLines @@ -286,7 +286,7 @@ CheckOptions: - key: readability-function-size.BranchThreshold value: '600' - key: readability-function-size.LineThreshold - value: '3000' + value: '4000' - key: readability-function-size.StatementThreshold value: '4000' - key: readability-identifier-naming.AbstractClassCase