diff --git a/crates/derive/src/attributes/stateful.rs b/crates/derive/src/attributes/stateful.rs index 16fa8e2aa..06f88ed4e 100644 --- a/crates/derive/src/attributes/stateful.rs +++ b/crates/derive/src/attributes/stateful.rs @@ -1,4 +1,3 @@ -#![allow(clippy::unnecessary_map_or)] //! The [`AttributesBuilder`] and it's default implementation. use crate::{ diff --git a/crates/derive/src/stages/batch/batch_validator.rs b/crates/derive/src/stages/batch/batch_validator.rs index 6f807b758..d1ff9499a 100644 --- a/crates/derive/src/stages/batch/batch_validator.rs +++ b/crates/derive/src/stages/batch/batch_validator.rs @@ -1,4 +1,3 @@ -#![allow(clippy::unnecessary_map_or)] //! Contains the [BatchValidator] stage. use super::NextBatchProvider; diff --git a/crates/mpt/src/list_walker.rs b/crates/mpt/src/list_walker.rs index 1cdf49a35..702ec8247 100644 --- a/crates/mpt/src/list_walker.rs +++ b/crates/mpt/src/list_walker.rs @@ -75,7 +75,6 @@ where Ok(()) } - #[allow(clippy::missing_const_for_fn)] /// Takes the inner list of the [OrderedListWalker], returning it and setting the inner list to /// [None]. pub fn take_inner(&mut self) -> Option> { diff --git a/justfile b/justfile index dcb23e3cf..a0cd37088 100644 --- a/justfile +++ b/justfile @@ -63,7 +63,7 @@ fmt-native-check: # Lint the workspace lint-native: fmt-native-check lint-docs - cargo +nightly clippy --workspace --all --all-features --all-targets -- -D warnings + cargo clippy --workspace --all --all-features --all-targets -- -D warnings # 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. lint-cannon: