##// END OF EJS Templates
rust-clippy: disable some lints crate-wide for `hg-cpython`...
Raphaël Gomès -
r50827:136aa80a default
parent child Browse files
Show More
@@ -18,6 +18,11 b''
18 //! >>> ancestor.__doc__
18 //! >>> ancestor.__doc__
19 //! 'Generic DAG ancestor algorithms - Rust implementation'
19 //! 'Generic DAG ancestor algorithms - Rust implementation'
20 //! ```
20 //! ```
21 #![allow(clippy::too_many_arguments)] // rust-cpython macros
22 #![allow(clippy::zero_ptr)] // rust-cpython macros
23 #![allow(clippy::needless_update)] // rust-cpython macros
24 #![allow(clippy::manual_strip)] // rust-cpython macros
25 #![allow(clippy::type_complexity)] // rust-cpython macros
21
26
22 /// This crate uses nested private macros, `extern crate` is still needed in
27 /// This crate uses nested private macros, `extern crate` is still needed in
23 /// 2018 edition.
28 /// 2018 edition.
General Comments 0
You need to be logged in to leave comments. Login now