Skip to content
This repository was archived by the owner on Aug 1, 2022. It is now read-only.

Commit 9729b73

Browse files
authored
fix: fix clippy on CI (#430)
* Remove cargo check * Ignore integer arithmetic lints
1 parent 8f223eb commit 9729b73

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.buildkite/run.sh

+3-4
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,12 @@ cat "$HOME/.gitconfig"
7171
echo "--- Run cargo fmt"
7272
(cd proxy && time cargo fmt --all -- --check)
7373

74-
echo "--- Run proxy tests"
75-
(cd proxy && time cargo test --all --all-features --all-targets)
76-
7774
echo "--- Run proxy lints"
78-
(cd proxy && time cargo check --all --all-features --all-targets)
7975
(cd proxy && time cargo clippy --all --all-features --all-targets)
8076

77+
echo "--- Run proxy tests"
78+
(cd proxy && time cargo test --all --all-features --all-targets)
79+
8180
echo "--- Run app eslint checks"
8281
time yarn lint
8382

proxy/src/registry/transaction.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#![allow(clippy::integer_arithmetic)]
12
//! Abstractions and types to handle, persist and interact with transactions.
23
34
use async_trait::async_trait;

0 commit comments

Comments
 (0)