diff options
author | Eric Bailey <git@esb.lol> | 2025-06-14 12:47:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-14 20:47:05 +0300 |
commit | 9fb2a63466fda3389a5b6715ca109a14933db9c8 (patch) | |
tree | fbf863121d976f2f4c2cac52969f1896b7a41d27 /.husky | |
parent | 45e64757d01977783be904fc7d7761bd88e7914c (diff) | |
download | voidsky-9fb2a63466fda3389a5b6715ca109a14933db9c8.tar.zst |
Run lint-staged without concurrency (#8489)
Diffstat (limited to '.husky')
-rwxr-xr-x | .husky/pre-commit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.husky/pre-commit b/.husky/pre-commit index d24fdfc60..c8fec63e2 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,4 +1,4 @@ #!/usr/bin/env sh . "$(dirname -- "$0")/_/husky.sh" -npx lint-staged +npx lint-staged --concurrent false |