Last active
February 7, 2024 09:21
-
-
Save hryniuk/e3f4ae34e37947d0ff55a3f63add90f8 to your computer and use it in GitHub Desktop.
Git `pre-commit` hook that checks Rust code style with `cargo fmt`
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
diff=$(cargo fmt -- --check) | |
result=$? | |
if [[ ${result} -ne 0 ]] ; then | |
cat <<\EOF | |
There are some code style issues, run `cargo fmt` first. | |
EOF | |
exit 1 | |
fi | |
exit 0 |
Thanks for the suggestion! I didn't notice I made it public ๐
Might wanna add
cargo clippy
for linting as well. thanks for the scripts :D
Running cargo clippy
before each commit will end up with clippy
downloading all your dependencies and compiling your entire project every time you commit, that could be very very bothering ๐
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Might wanna add
cargo clippy
for linting as well. thanks for the scripts :D