From ec095fa1db6ad7b71ae690f72a34f0063d1fd6b1 Mon Sep 17 00:00:00 2001 From: Nicholai Date: Mon, 16 Feb 2026 02:07:41 -0700 Subject: [PATCH] build(husky): add lint and build hooks lint on pre-commit, build on pre-push --- .husky/pre-commit | 3 +++ .husky/pre-push | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 .husky/pre-commit create mode 100644 .husky/pre-push diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100644 index 0000000..5ce24d2 --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1,3 @@ +#!/bin/sh + +bun lint diff --git a/.husky/pre-push b/.husky/pre-push new file mode 100644 index 0000000..213d4a9 --- /dev/null +++ b/.husky/pre-push @@ -0,0 +1,3 @@ +#!/bin/sh + +bun run build