feat(regex): add more validations #42
Annotations
2 errors and 1 warning
shellcheck:
commit-msg#L8
[shellcheck (suggestion)] reported by reviewdog 🐶
Raw Output:
commit-msg:8:-commitTitle="$(cat $1 | head -n1)"
commit-msg:8:+commitTitle="$(cat "$1" | head -n1)"
|
shellcheck
Process completed with exit code 1.
|
shellcheck:
commit-msg#L8
[shellcheck] reported by reviewdog 🐶
Double quote to prevent globbing and word splitting.
Raw Output:
commit-msg:8:20: info: Double quote to prevent globbing and word splitting. (ShellCheck.SC2086)
|