It will now only run Jest tests, Prettier, and TSLint on staged files. This should significantly reduce the amount of time the commit checks take (especially later on with many more tests).
TSLint does a --fix to fix any obvious errors.
Prettier and TSLint --fix'ed files get re-added to the commit.
Pre-commit behavior is changed:
It will now only run Jest tests, Prettier, and TSLint on staged files. This should significantly reduce the amount of time the commit checks take (especially later on with many more tests).
TSLint does a
--fix
to fix any obvious errors.Prettier and TSLint
--fix
'ed files get re-added to the commit.