Rename scripts and make messages consistent

MAILPOET-4237
This commit is contained in:
John Oleksowicz
2024-01-31 13:55:53 -06:00
committed by John Oleksowicz
parent 97f811390d
commit 52397951d8
3 changed files with 6 additions and 6 deletions

View File

@@ -17,8 +17,8 @@
"prepare": "cd .. && husky install"
},
"lint-staged": {
"*.{scss,css}": "tasks/lint-staged-styles.sh",
"*.{js,jsx,ts,tsx}": "tasks/lint-staged-scripts.sh",
"*.{scss,css}": "tasks/lint-staged-css.sh",
"*.{js,jsx,ts,tsx}": "tasks/lint-staged-js.sh",
"*.php": "tasks/lint-staged-php.sh"
},
"dependencies": {

View File

@@ -3,12 +3,12 @@
source $PWD/.env
if [ "$MP_GIT_HOOKS_ENABLE" != "true" ]; then
echo "MP_GIT_HOOKS_ENABLE is not set to 'true'. Skipping lint-staged-scripts."
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 not set to 'true', skipping stylelint"
echo "MP_GIT_HOOKS_STYLELINT is not set to 'true', skipping stylelint."
fi

View File

@@ -3,12 +3,12 @@
source $PWD/.env
if [ "$MP_GIT_HOOKS_ENABLE" != "true" ]; then
echo "MP_GIT_HOOKS_ENABLE is not set to 'true'. Skipping lint-staged-scripts."
echo "MP_GIT_HOOKS_ENABLE is not set to 'true', skipping lint-staged-js"
exit 0
fi
if [ "$MP_GIT_HOOKS_ESLINT" = "true" ]; then
eslint --max-warnings 0 $@
else
echo "MP_GIT_HOOKS_ESLINT not set to 'true', skipping eslint"
echo "MP_GIT_HOOKS_ESLINT is not set to 'true', skipping eslint"
fi