Skip to content

Commit

Permalink
chore: disable clippy::matches_like_macro lint
Browse files Browse the repository at this point in the history
  • Loading branch information
calebcartwright committed Jul 26, 2021
1 parent 4c2959f commit d42be80
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 9 deletions.
24 changes: 15 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/cargo-fmt/main.rs
@@ -1,6 +1,7 @@
// Inspired by Paul Woolcock's cargo-fmt (https://github.com/pwoolcoc/cargo-fmt/).

#![deny(warnings)]
#![allow(clippy::match_like_matches_macro)]

use std::cmp::Ordering;
use std::collections::{BTreeMap, BTreeSet};
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Expand Up @@ -2,6 +2,7 @@
#![deny(rust_2018_idioms)]
#![warn(unreachable_pub)]
#![recursion_limit = "256"]
#![allow(clippy::match_like_matches_macro)]

#[macro_use]
extern crate derive_new;
Expand Down

0 comments on commit d42be80

Please sign in to comment.