mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-03 00:31:50 +00:00
6 lines
111 B
Bash
Executable File
6 lines
111 B
Bash
Executable File
#!/bin/sh
|
|
# Pre-commit hook: runs cargo fmt --check
|
|
# Install with: make install-hooks
|
|
|
|
exec cargo fmt --check
|