Revision f2ba19253d09786982ecfc913c11a5ed0806555f authored by Andrew Scott on 29 March 2023, 22:36:27 UTC, committed by Andrew Scott on 29 March 2023, 22:41:24 UTC
1 parent cbe6807
Raw File
pre-commit
#!/bin/sh
. "$(dirname $0)/_/husky.sh"

set +e
yarn -s ng-dev format staged 2>/dev/null
if [ $? -ne 0 ]; then
  echo "WARNING: failed to run file formatting (ng-dev format staged)"
fi


exit 0;
back to top