skrill-frontend/.husky/pre-commit

10 lines
180 B
Plaintext
Raw Permalink Normal View History

2024-07-28 03:04:23 -06:00
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
npx lint-staged --quiet ||
(
echo -e "\n❌ Prettier formatting failed!\n"
false;
)
echo -e "✅ Prettier formatting successful!"