Skip to content

Commit

Permalink
ignore clippy for vendor code
Browse files Browse the repository at this point in the history
  • Loading branch information
BillyWooo committed Jan 22, 2025
1 parent 5b5d5ea commit ffbd8e8
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions parachain/vendor/evm-tracing/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
// along with Moonbeam. If not, see <http://www.gnu.org/licenses/>.

//! This crate contains the client-side part that interacts with our "v2" tracing design.
#![allow(clippy::all)]

pub mod formatters;
pub mod listeners;
Expand Down
1 change: 1 addition & 0 deletions parachain/vendor/primitives/debug/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
// along with Moonbeam. If not, see <http://www.gnu.org/licenses/>.

#![cfg_attr(not(feature = "std"), no_std)]
#![allow(clippy::all)]

use ethereum::{TransactionV0 as LegacyTransaction, TransactionV2 as Transaction};
use ethereum_types::{H160, H256, U256};
Expand Down
2 changes: 2 additions & 0 deletions parachain/vendor/primitives/evm-tracing-events/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
//! The EVM event types may contain references and not implement Encode/Decode.
//! This module provide mirror types and conversion into them from the original events.
#![allow(clippy::all)]

#![cfg_attr(not(feature = "std"), no_std)]
extern crate alloc;

Expand Down
2 changes: 2 additions & 0 deletions parachain/vendor/rpc-core/types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
// You should have received a copy of the GNU General Public License
// along with Moonbeam. If not, see <http://www.gnu.org/licenses/>.

#![allow(clippy::all)]

use ethereum_types::H256;
use serde::{de::Error, Deserialize, Deserializer};

Expand Down
2 changes: 2 additions & 0 deletions parachain/vendor/rpc/debug/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@

// You should have received a copy of the GNU General Public License
// along with Moonbeam. If not, see <http://www.gnu.org/licenses/>.
#![allow(clippy::all)]

use futures::StreamExt;
use jsonrpsee::core::{async_trait, RpcResult};
pub use moonbeam_rpc_core_debug::{DebugServer, TraceCallParams, TraceParams};
Expand Down
1 change: 1 addition & 0 deletions parachain/vendor/rpc/trace/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
//! - A main `CacheTask` managing the cache and the communication between tasks.
//! - For each traced block an async task responsible to wait for a permit, spawn a blocking
//! task and waiting for the result, then send it to the main `CacheTask`.
#![allow(clippy::all)]

use futures::{select, stream::FuturesUnordered, FutureExt, StreamExt};
use std::{collections::BTreeMap, future::Future, marker::PhantomData, sync::Arc, time::Duration};
Expand Down
1 change: 1 addition & 0 deletions parachain/vendor/rpc/txpool/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

// You should have received a copy of the GNU General Public License
// along with Moonbeam. If not, see <http://www.gnu.org/licenses/>.
#![allow(clippy::all)]

use ethereum_types::{H160, H256, U256};
use fc_rpc::{internal_err, public_key};
Expand Down
1 change: 1 addition & 0 deletions parachain/vendor/runtime/evm-tracer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
//! Proxies EVM messages to the host functions.
#![cfg_attr(not(feature = "std"), no_std)]
#![allow(clippy::all)]

pub mod tracer {
use evm_tracing_events::{EvmEvent, GasometerEvent, RuntimeEvent, StepEventFilter};
Expand Down

0 comments on commit ffbd8e8

Please sign in to comment.