7 lines
168 B
Plaintext
7 lines
168 B
Plaintext
|
|
#!/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
|