Setting up lint-staged on front and back

This commit is contained in:
David Négrier 2021-06-23 16:45:38 +02:00
parent ecbadda65a
commit 3eab074e2a
5 changed files with 816 additions and 11 deletions

View file

@ -1,4 +1,15 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
cd front && yarn run precommit
(
cd front || exit
yarn run precommit
)
(
cd pusher || exit
yarn run precommit
)
(
cd back || exit
yarn run precommit
)