From 75e9f5e156ac11d2479d86e7001250280371c601 Mon Sep 17 00:00:00 2001 From: Matt Raible Date: Fri, 1 Nov 2024 00:30:08 -0600 Subject: [PATCH] Fix deprecation warning from husky (#1263) ``` husky - DEPRECATED Please remove the following two lines from .husky/pre-commit: #!/usr/bin/env sh . "$(dirname -- "$0")/_/husky.sh" They WILL FAIL in v10.0.0 ``` --- .husky/pre-commit | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.husky/pre-commit b/.husky/pre-commit index c70c608e..041c660c 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,4 +1 @@ -#!/bin/sh -. "$(dirname "$0")/_/husky.sh" - -npx --no-install lint-staged \ No newline at end of file +npx --no-install lint-staged