From 8ad11e9ec0bc607a2a4d9642320dce45c26ddaef Mon Sep 17 00:00:00 2001 From: "Matthieu Baerts (NGI0)" Date: Sat, 2 Nov 2024 18:15:43 +0100 Subject: [PATCH] checkpatch: set max line length to 80 Similar to what is done in Netdev. Link: https://github.com/linux-netdev/nipa/pull/41 Signed-off-by: Matthieu Baerts (NGI0) --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index c37c9d7..1a80ac4 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -646,7 +646,7 @@ get_commit_md() { CHECKPATCH_DETAILS="./checkpatch-details.txt" _checkpatch() { ./scripts/checkpatch.pl \ - --strict \ + --strict --max-line-length=80 \ --codespell --codespellfile /usr/lib/python3/dist-packages/codespell_lib/data/dictionary.txt \ -g HEAD 2>&1 | tee "${TMPFILE}" >&2