We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e62a40 commit 6ef4837Copy full SHA for 6ef4837
.pre-commit-config.yaml
@@ -62,6 +62,16 @@ repos:
62
exclude: ^(docs/|.*test.*\.py$|utilities/manifests/.*|utilities/plugins/tgis_grpc/.*)
63
64
65
+ - repo: local
66
+ hooks:
67
+ - id: check-signoff
68
+ name: Check Signed-off-by
69
+ stages: [commit-msg]
70
+ language: system
71
+ entry: >
72
+ bash -c 'grep -q "^Signed-off-by:" "$1" ||
73
+ { echo "ERROR: Commit not signed. Use git commit -s"; exit 1; }' --
74
+
75
- repo: https://github.com/espressif/conventional-precommit-linter
76
rev: v1.11.0
77
hooks:
0 commit comments