11 lines
199 B
Bash
Executable file
11 lines
199 B
Bash
Executable file
#!/bin/sh
|
|
. "$(dirname "$0")/_/husky.sh"
|
|
|
|
branch="$(git rev-parse --abbrev-ref HEAD)"
|
|
|
|
if [ "$branch" = "main" ]; then
|
|
echo "You can't commit directly to main branch"
|
|
exit 1
|
|
fi
|
|
|
|
yarn lint-staged
|