Skip to content

Commit d44dc8a

Browse files
chore: disable clippy::matches_like_macro lint
1 parent 510fb81 commit d44dc8a

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Diff for: src/cargo-fmt/main.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Inspired by Paul Woolcock's cargo-fmt (https://github.com/pwoolcoc/cargo-fmt/).
22

33
#![deny(warnings)]
4+
#![allow(clippy::match_like_matches_macro)]
45

56
use std::cmp::Ordering;
67
use std::collections::{BTreeMap, BTreeSet};

Diff for: src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#![deny(rust_2018_idioms)]
33
#![deny(unused_imports)]
44
#![warn(unreachable_pub)]
5+
#![allow(clippy::match_like_matches_macro)]
56

67
#[macro_use]
78
extern crate derive_new;

0 commit comments

Comments
 (0)