diff options
author | Bernd Schubert <bernd@bsbernd.com> | 2025-03-11 14:29:25 +0100 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2025-03-11 14:35:39 +0100 |
commit | f466ce3c91e33427f1387cde47a19006d4144553 (patch) | |
tree | d1ba1927f70121c72e9b272bb03f2f092d95c86b /.github | |
parent | 2a1bd0b0c8b774d70bd2154a50db97fc8875accd (diff) | |
download | libfuse-f466ce3c91e33427f1387cde47a19006d4144553.tar.gz |
checkpatch: 100 chars per line
Accept up to 100 chars per line to silence more github action
updates.
Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/checkpatch.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/checkpatch.yml b/.github/workflows/checkpatch.yml index 5bf9262..45133eb 100644 --- a/.github/workflows/checkpatch.yml +++ b/.github/workflows/checkpatch.yml @@ -30,7 +30,7 @@ jobs: git rev-list --reverse $base_commit..HEAD | while read commit; do subject=$(git log -1 --format=%s $commit) echo "Checking commit: $commit - $subject" - if ! ./checkpatch.pl --no-tree --ignore MAINTAINERS,SPDX_LICENSE_TAG,COMMIT_MESSAGE,FILE_PATH_CHANGES,EMAIL_SUBJECT,AVOID_EXTERNS,GIT_COMMIT_ID,ENOSYS_SYSCALL,ENOSYS,FROM_SIGN_OFF_MISMATCH,QUOTED_COMMIT_ID -g $commit; then + if ! ./checkpatch.pl --max-line-length=100 --no-tree --ignore MAINTAINERS,SPDX_LICENSE_TAG,COMMIT_MESSAGE,FILE_PATH_CHANGES,EMAIL_SUBJECT,AVOID_EXTERNS,GIT_COMMIT_ID,ENOSYS_SYSCALL,ENOSYS,FROM_SIGN_OFF_MISMATCH,QUOTED_COMMIT_ID -g $commit; then echo "checkpatch.pl found issues in commit $commit - $subject" exit 1 fi |