Ignore should_implement_trait lint
The Parser::next method is already a public API.
This commit is contained in:
parent
1f0d33259b
commit
ef9b526d59
1 changed files with 4 additions and 1 deletions
|
@ -38,7 +38,10 @@
|
|||
|
||||
#![cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints))]
|
||||
#![cfg_attr(feature = "cargo-clippy", warn(cyclomatic_complexity))]
|
||||
#![cfg_attr(feature = "cargo-clippy", allow(match_same_arms))]
|
||||
#![cfg_attr(
|
||||
feature = "cargo-clippy",
|
||||
allow(match_same_arms, should_implement_trait)
|
||||
)]
|
||||
|
||||
extern crate linked_hash_map;
|
||||
|
||||
|
|
Loading…
Reference in a new issue