2021-12-20 20:09:58 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -eoux pipefail
|
|
|
|
|
2022-10-13 22:00:16 +01:00
|
|
|
cd rust
|
2021-12-20 20:09:58 +00:00
|
|
|
# Force clippy to consider all local sources
|
|
|
|
# https://github.com/rust-lang/rust-clippy/issues/4612
|
|
|
|
find . -name "*.rs" -not -path "./target/*" -exec touch "{}" +
|
2022-08-15 12:52:44 +01:00
|
|
|
cargo clippy --all-targets --all-features -- -D warnings
|