Add precommit hook to suggest proper formatting

Signed-off-by: kernelkind <kernelkind@gmail.com>
Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
kernelkind
2024-04-17 13:36:20 -04:00
committed by William Casarin
parent c76f322a48
commit dae57d78ef
3 changed files with 31 additions and 0 deletions

19
scripts/dev_setup.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env bash
HOOK_SCRIPTS_DIR="scripts"
GIT_HOOKS_DIR=".git/hooks"
# Ensure the necessary directories exist and are accessible
if [ ! -d "$HOOK_SCRIPTS_DIR" ] || [ ! -d "$GIT_HOOKS_DIR" ]; then
echo "Error: Required directories are missing. Please ensure you are in the project's root directory."
exit 1
fi
# Copy the pre-commit hook script
cp -p "$HOOK_SCRIPTS_DIR/pre_commit_hook.sh" "$GIT_HOOKS_DIR/pre-commit"
# Make the hook script executable
chmod +x "$GIT_HOOKS_DIR/pre-commit"
echo "Pre-commit hook has been set up successfully."