mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
10 lines
161 B
Bash
Executable File
10 lines
161 B
Bash
Executable File
#!/usr/bin/env sh
|
|
. "$(dirname -- "$0")/_/husky.sh"
|
|
|
|
# Avoid excessive outputs
|
|
if [ -t 2 ]; then
|
|
exec >/dev/tty 2>&1
|
|
fi
|
|
|
|
pnpm lint-staged -c .lintstagedrc.cjs
|