From 504203654d7636e870e4fbee13a75ef12266b913 Mon Sep 17 00:00:00 2001 From: Sean Bowe Date: Fri, 26 Feb 2021 10:33:59 -0700 Subject: [PATCH] Disable clippy::{many_single_char_names,op_ref} lint in integration test. --- tests/plonk_api.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/plonk_api.rs b/tests/plonk_api.rs index bc2e717..8973ee7 100644 --- a/tests/plonk_api.rs +++ b/tests/plonk_api.rs @@ -1,3 +1,6 @@ +#![allow(clippy::many_single_char_names)] +#![allow(clippy::op_ref)] + use group::Curve; use halo2::arithmetic::FieldExt; use halo2::dev::MockProver;