From ea462134c86c1afd4331de9b9fb0de1b8cfc83ce Mon Sep 17 00:00:00 2001 From: Greg Trihus Date: Thu, 8 Jan 2026 13:03:45 -0600 Subject: [PATCH] Remove pre-commit hooks from husky configuration in package.json to streamline the commit process. - pre-commit hooks have proved to be very slow - github actions will now apply both jest and cypress tests whereas this hook only applied jest tests - formatting and lint tests are done by VS Code --- src/renderer/package.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/renderer/package.json b/src/renderer/package.json index 443e23c9..0ff6c0cf 100644 --- a/src/renderer/package.json +++ b/src/renderer/package.json @@ -244,9 +244,7 @@ ] }, "husky": { - "hooks": { - "pre-commit": "npm run typecheck && npm run test --watchAll=false && lint-staged" - } + "hooks": {} }, "volta": { "node": "22.19.0"