mirror of
https://github.com/herdrdev/herdr.git
synced 2026-09-26 00:01:14 +00:00
9 lines
148 B
Bash
Executable File
9 lines
148 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
repo_root="$(git rev-parse --show-toplevel)"
|
|
cd "$repo_root"
|
|
|
|
echo "pre-commit: running just lint"
|
|
just lint
|