feat: add some precommit (#274)

- ensure correct formatting with shfmt
- ensure correct syntax with shellcheck

Co-authored-by: damien cavagnini <damien.cavagnini@corp.ovh.com>
This commit is contained in:
damcav35
2025-07-22 11:14:41 +02:00
committed by GitHub
parent 51bc5825d6
commit c9f9137e59
3 changed files with 28 additions and 0 deletions

7
hooks/shellcheck.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
for script in "$@"; do
/usr/bin/shellcheck --exclude=SC2317 --color=always --shell=bash -x --source-path=SCRIPTDIR "$script"
done
exit 0