automation_rs/.git-hooks/pre-commit
Dreaded_X 65f76904dd
All checks were successful
continuous-integration/drone/push Build is passing
Added pre-commit hook to run lint and check formatting
2023-04-10 05:29:09 +02:00

13 lines
588 B
Bash
Executable File

#!/bin/sh
set -o nounset # Fail on use of unset variable.
set -o errexit # Exit on command failure.
set -o pipefail # Exit on failure of any command in a pipeline.
set -o errtrace # Trap errors in functions and subshells.
set -o noglob # Disable filename expansion (globbing),
# since it could otherwise happen during
# path splitting.
shopt -s inherit_errexit # Inherit the errexit option status in subshells.
cargo clippy --all-targets --all -- -D warnings
cargo fmt -- --check