From: Arun Prakash Jana Date: Tue, 24 Nov 2020 20:45:13 +0000 (+0530) Subject: Limit lines of code per func to 900 X-Git-Tag: v3.6~49 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=6555dd8cee43175b28f93908171412c5eda19e3e;p=nnn.git Limit lines of code per func to 900 --- diff --git a/src/.clang-tidy b/src/.clang-tidy index a40cfc77..a4dc28b2 100644 --- a/src/.clang-tidy +++ b/src/.clang-tidy @@ -11,5 +11,5 @@ CheckOptions: - key: fuchsia-restrict-system-includes.Includes value: '*,-stdint.h,-stdbool.h' - key: readability-function-size.StatementThreshold - value: '915' + value: '900' ...