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