From 551b12b4a3bdd1f4340a75d7b076647a7c782e4f Mon Sep 17 00:00:00 2001 From: Ederson de Souza Date: Tue, 30 Nov 2021 11:01:23 -0800 Subject: [PATCH] gitlint: Make commit message line size be compatible with checkpatch.pl checkpatch.pl recommends that commit messages line size should not go over 75 characters, howerver .gitlint was enforcing 72 characters instead, which is inconsistent. This patch changes .gitlint so that both are compatible. Signed-off-by: Ederson de Souza --- .gitlint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlint b/.gitlint index 7e0e5d3b5e6..851fd915d38 100644 --- a/.gitlint +++ b/.gitlint @@ -39,7 +39,7 @@ words=wip [max-line-length-with-exceptions] # B1 = body-max-line-length -line-length=72 +line-length=75 [body-min-length] min-length=3