Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ This project uses [Hermit](https://github.com/cashapp/hermit) to manage developm
```bash
source bin/activate-hermit # Activate hermit environment
rustup default stable # Set the default Rust toolchain
lefthook install # Install git hooks for pre-push checks
```

After activation, `cargo`, `node`, `npm`, and `just` are all available from the hermit-managed versions.
Expand Down
1 change: 1 addition & 0 deletions bin/.lefthook-2.0.15.pkg
1 change: 1 addition & 0 deletions bin/lefthook
13 changes: 13 additions & 0 deletions lefthook.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
skip_lfs: true
output:
- success
- failure
pre-push:
parallel: true
commands:
fmt-check:
run: just fmt-check
lint:
run: just lint
typecheck:
run: just typecheck
Loading