Right now, before any commit I manually run
and then
cargo clippy --all-targets --all-features -- -D warnings
These are run in our CI checks. We could just add them as pre-commit hooks so that they are automatically run whenever a contributor tries to make a commit. This way, it is impossible to forget and then have the issue be caught later in CI.
Right now, before any commit I manually run
and then
These are run in our CI checks. We could just add them as pre-commit hooks so that they are automatically run whenever a contributor tries to make a commit. This way, it is impossible to forget and then have the issue be caught later in CI.