Merge pull request #184 from zcash/fix-clippy

Disable clippy::upper_case_acronyms lint
This commit is contained in:
ebfull 2021-02-15 08:19:42 -07:00 committed by GitHub
commit 356ce36c71
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,13 +1,16 @@
//! # halo2
#![cfg_attr(docsrs, feature(doc_cfg))]
#![allow(unknown_lints)]
#![allow(
clippy::op_ref,
clippy::assign_op_pattern,
clippy::too_many_arguments,
clippy::suspicious_arithmetic_impl,
clippy::many_single_char_names,
clippy::same_item_push
clippy::same_item_push,
clippy::upper_case_acronyms,
clippy::unknown_clippy_lints
)]
#![deny(broken_intra_doc_links)]
#![deny(missing_debug_implementations)]