diff options
author | 2021-01-26 12:29:22 +0300 | |
---|---|---|
committer | 2021-01-26 12:29:22 +0300 | |
commit | 0945acd256b8d155225306b34dd774e418384577 (patch) | |
tree | e3a5427a9ce5480ba672185923ad6afcce50005d | |
parent | Modifies Linting Rules (diff) |
Removes Tests From Precommit
Testing usually adds quite a few seconds to the commit time, and might
not be too helpful. Testing can be invoked manually, and is run in
actions.
Signed-off-by: Hassan Abouelela <[email protected]>
-rw-r--r-- | package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json index 852134f..3f23637 100644 --- a/package.json +++ b/package.json @@ -79,7 +79,7 @@ }, "husky": { "hooks": { - "pre-commit": "yarn lint --quiet && yarn test -o --silent" + "pre-commit": "yarn lint --quiet" } } } |