Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.

Commit f854cf4

Browse files
committed
fix: remove clippy warn
1 parent 235e5e4 commit f854cf4

4 files changed

Lines changed: 1 addition & 4 deletions

File tree

crates/derive/src/attributes/stateful.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![allow(clippy::unnecessary_map_or)]
21
//! The [`AttributesBuilder`] and it's default implementation.
32
43
use crate::{

crates/derive/src/stages/batch/batch_validator.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![allow(clippy::unnecessary_map_or)]
21
//! Contains the [BatchValidator] stage.
32
43
use super::NextBatchProvider;

crates/mpt/src/list_walker.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ where
7575
Ok(())
7676
}
7777

78-
#[allow(clippy::missing_const_for_fn)]
7978
/// Takes the inner list of the [OrderedListWalker], returning it and setting the inner list to
8079
/// [None].
8180
pub fn take_inner(&mut self) -> Option<VecDeque<(Bytes, Bytes)>> {

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ fmt-native-check:
6363

6464
# Lint the workspace
6565
lint-native: fmt-native-check lint-docs
66-
cargo +nightly clippy --workspace --all --all-features --all-targets -- -D warnings
66+
cargo clippy --workspace --all --all-features --all-targets -- -D warnings
6767

6868
# Lint the workspace (mips arch). Currently, only the `kona-std-fpvm` crate is linted for the `cannon` target, as it is the only crate with architecture-specific code.
6969
lint-cannon:

0 commit comments

Comments
 (0)