Skip to content

Commit ce30891

Browse files
author
Michael Wright
committed
Fix unknown lint warnings
1 parent 8744e8e commit ce30891

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

clippy_lints/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#![allow(clippy::missing_docs_in_private_items)]
99
#![recursion_limit = "512"]
1010
#![warn(rust_2018_idioms, trivial_casts, trivial_numeric_casts)]
11-
#![deny(internal)]
11+
#![deny(rustc::internal)]
1212
#![feature(crate_visibility_modifier)]
1313
#![feature(concat_idents)]
1414

clippy_lints/src/types.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![allow(default_hash_types)]
1+
#![allow(rustc::default_hash_types)]
22

33
use std::borrow::Cow;
44
use std::cmp::Ordering;

0 commit comments

Comments
 (0)