From a1236d3499a4d1560e8eb497091412c204957240 Mon Sep 17 00:00:00 2001 From: Adrian de la Rosa Date: Mon, 25 May 2026 23:25:29 +0200 Subject: [PATCH] chore: add missing husky hooks --- .husky/pre-commit | 1 + .husky/pre-push | 1 + 2 files changed, 2 insertions(+) create mode 100755 .husky/pre-commit create mode 100755 .husky/pre-push diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100755 index 0000000..cb2c84d --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1 @@ +pnpm lint-staged diff --git a/.husky/pre-push b/.husky/pre-push new file mode 100755 index 0000000..426d746 --- /dev/null +++ b/.husky/pre-push @@ -0,0 +1 @@ +pnpm run format:ci && pnpm run lint:ci && pnpm run test:coverage