17 lines
331 B
Bash
Executable File
17 lines
331 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
source $PWD/.env
|
|
|
|
if [ "$MP_GIT_HOOKS_ENABLE" != "true" ]; then
|
|
echo "MP_GIT_HOOKS_ENABLE is not set to 'true', skipping lint-staged-css."
|
|
exit 0
|
|
fi
|
|
|
|
if [ "$MP_GIT_HOOKS_STYLELINT" = "true" ]; then
|
|
pnpm run stylelint $@
|
|
else
|
|
echo "MP_GIT_HOOKS_STYLELINT is not set to 'true', skipping stylelint."
|
|
fi
|