7 lines
168 B
Bash
7 lines
168 B
Bash
#!/usr/bin/env sh
|
|
|
|
# Basic pre-commit hook initialized at repo root.
|
|
# Add your checks below (lint/test/etc.).
|
|
|
|
echo "husky pre-commit: no checks configured yet"
|
|
exit 0 |