Revision c2149dfaa82aa0e1963d4a8b1f49063a9c4a9d69 authored by Andrew Scott on 20 March 2024, 19:25:38 UTC, committed by Andrew Scott on 20 March 2024, 19:49:30 UTC
1 parent 99e9474
Raw File
pre-commit
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