spoticord/.githooks/pre-commit

17 lines
329 B
Plaintext
Raw Normal View History

2023-02-21 13:45:59 +00:00
#!/bin/bash
RED='\033[0;31m'
BRED='\033[1;31m'
NC='\033[0m'
diff=$(cargo clippy --all -- -D warnings -D clippy::unwrap_used)
result=$?
if [[ ${result} -ne 0 ]] ; then
echo -e "\n${BRED}Cannot commit:${NC} There are some clippy issues in your code, check the above output for any errors."
exit 1
fi
2023-02-21 13:49:42 +00:00
cargo fmt --all
2023-02-21 13:45:59 +00:00
exit 0