From 92f1feb2625d9ba13f04754a771ad80e57b30ccc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5rten=20Angner?= Date: Thu, 11 Dec 2025 17:17:47 +0100 Subject: [PATCH] chore(husky): Remove pre-commit hook Deleted the pre-commit hook script from the Husky configuration. This script previously auto-fixed changed files and ran tests before commits. The removal streamlines the commit process. --- .husky/pre-commit | 7 ------- 1 file changed, 7 deletions(-) delete mode 100755 .husky/pre-commit diff --git a/.husky/pre-commit b/.husky/pre-commit deleted file mode 100755 index 1397d511..00000000 --- a/.husky/pre-commit +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env sh - -# Auto-fix changed files and stage them -npx --no-install lint-staged - -# Validate everything -npm test