mirror of
https://git.zavage.net/Zavage-Software/skrill-frontend.git
synced 2025-01-18 15:59:44 -07:00
10 lines
180 B
Bash
10 lines
180 B
Bash
#!/bin/sh
|
|
. "$(dirname "$0")/_/husky.sh"
|
|
|
|
npx lint-staged --quiet ||
|
|
(
|
|
echo -e "\n❌ Prettier formatting failed!\n"
|
|
false;
|
|
)
|
|
|
|
echo -e "✅ Prettier formatting successful!" |