Skip to content

Commit 3bf7fea

Browse files
committed
Makefile - run clippy & fmt checks
sentry - remove unused import
1 parent ce7018e commit 3bf7fea

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

Makefile.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = "true"
33
CARGO_MAKE_CLIPPY_ARGS = "--all-features -- -D warnings"
44
CARGO_MAKE_RUN_TOML_FORMAT = "true"
5+
CARGO_MAKE_RUN_CHECK_FORMAT = "true"
6+
CARGO_MAKE_RUN_CLIPPY = "true"
57

68
[tasks.dev-test-flow]
79
dependencies = [

sentry/src/main.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,8 @@ use adapter::{primitives::AdapterTypes, Adapter};
55
use clap::{crate_version, value_parser, Arg, Command};
66

77
use primitives::{
8-
config::{configuration, GANACHE_CONFIG},
9-
postgres::POSTGRES_CONFIG,
10-
test_util::DUMMY_AUTH,
11-
util::logging::new_logger,
12-
ValidatorId,
8+
config::configuration, postgres::POSTGRES_CONFIG, test_util::DUMMY_AUTH,
9+
util::logging::new_logger, ValidatorId,
1310
};
1411
use sentry::{
1512
application::EnableTls,

0 commit comments

Comments
 (0)