2021-09-09 02:22:11 +00:00
|
|
|
#!/bin/sh
|
2022-03-01 23:10:15 +00:00
|
|
|
|
2022-11-05 21:10:13 +00:00
|
|
|
if [ -n "$NO_HOOK" ]; then
|
2022-03-01 23:10:15 +00:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2021-09-09 02:22:11 +00:00
|
|
|
. "$(dirname "$0")/_/husky.sh"
|
2021-09-29 07:24:21 +00:00
|
|
|
. "$(dirname "$0")/required-apps"
|
2021-09-09 02:22:11 +00:00
|
|
|
|
|
|
|
golangci-lint run -v --fix && \
|
2022-11-05 21:10:13 +00:00
|
|
|
cd web && "${PMGR}" lint
|