You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, our automated code style checking, i.e., make codestyle-check, does not include the test target. This means that there are a lot of warnings if you run cargo clippy --tests -- -D clippy:all.
Fix them and change cargo clippy -- -D clippy::all -D missing_docs to cargo clippy --all-targets -- -D clippy::all -D missing_docs in the Makefile.
The text was updated successfully, but these errors were encountered:
Currently, our automated code style checking, i.e.,
make codestyle-check
, does not include the test target. This means that there are a lot of warnings if you runcargo clippy --tests -- -D clippy:all
.Fix them and change
cargo clippy -- -D clippy::all -D missing_docs
tocargo clippy --all-targets -- -D clippy::all -D missing_docs
in the Makefile.The text was updated successfully, but these errors were encountered: