mirror of
https://github.com/saymrwulf/pasta_curves-source.git
synced 2026-09-04 20:03:39 +00:00
Merge pull request #184 from zcash/fix-clippy
Disable clippy::upper_case_acronyms lint
This commit is contained in:
commit
356ce36c71
1 changed files with 4 additions and 1 deletions
|
|
@ -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)]
|
||||
|
|
|
|||
Loading…
Reference in a new issue