Skip to content

Commit d42be80

Browse files
chore: disable clippy::matches_like_macro lint
1 parent 4c2959f commit d42be80

File tree

3 files changed

+17
-9
lines changed

3 files changed

+17
-9
lines changed

Cargo.lock

Lines changed: 15 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/cargo-fmt/main.rs

Lines changed: 1 addition & 0 deletions
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};

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#![deny(rust_2018_idioms)]
33
#![warn(unreachable_pub)]
44
#![recursion_limit = "256"]
5+
#![allow(clippy::match_like_matches_macro)]
56

67
#[macro_use]
78
extern crate derive_new;

0 commit comments

Comments
 (0)