From 600a7ff5b27a7dae8d8345def2254db53353dd12 Mon Sep 17 00:00:00 2001 From: Arnaud Pouliquen Date: Mon, 23 Aug 2021 17:54:06 +0200 Subject: [PATCH] checkpatch: Increase the default limit to 100 characters The 80 character limit is a warning which sometime affect the readability. let's relax this limit to 100 as done in some other projects Signed-off-by: Arnaud Pouliquen --- .checkpatch.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.checkpatch.conf b/.checkpatch.conf index f147ba3..204bbdc 100644 --- a/.checkpatch.conf +++ b/.checkpatch.conf @@ -2,7 +2,7 @@ --no-tree --summary-file --show-types ---max-line-length=80 +--max-line-length=100 --min-conf-desc-length=1 --ignore BRACES