.github/workflows, scripts: Improve checkpatch compliance

Use checkpatch --strict to detect more style issues.
This commit is contained in:
Gleb Chesnokov
2024-10-01 12:45:10 +03:00
parent 878bbad8ce
commit 1925094cb0
4 changed files with 25 additions and 17 deletions

View File

@@ -47,7 +47,7 @@ jobs:
for commit in $commits; do
echo "Running checkpatch.pl for commit $commit"
echo "========================================"
git format-patch -1 --stdout $commit | ./checkpatch.pl --no-tree --show-types --ignore="${ignore_str// /,}" - || err=1
git format-patch -1 --stdout $commit | ./checkpatch.pl --no-tree --show-types --strict --ignore="${ignore_str// /,}" - || err=1
echo
done