Remove depricated lints

This commit is contained in:
Jordan Petridis 2018-12-09 00:41:48 +02:00
parent 7e0b88ddbd
commit 9f8ae75691
No known key found for this signature in database
GPG Key ID: E8523968931763BE
3 changed files with 2 additions and 17 deletions

View File

@ -19,12 +19,10 @@
#![recursion_limit = "1024"]
#![allow(unknown_lints)]
#![feature(rust_2018_preview)]
#![cfg_attr(
all(test, feature = "clippy"),
allow(option_unwrap_used, result_unwrap_used)
)]
#![cfg_attr(feature = "cargo-clippy", allow(option_map_unit_fn))]
#![cfg_attr(
feature = "clippy",
warn(
@ -53,8 +51,6 @@
no_mangle_generic_items,
overflowing_literals,
plugin_as_library,
private_no_mangle_fns,
private_no_mangle_statics,
unconditional_recursion,
unions_with_drop_fields,
while_true,

View File

@ -19,8 +19,7 @@
#![recursion_limit = "1024"]
#![allow(unknown_lints)]
#![feature(rust_2018_preview)]
#![cfg_attr(feature = "cargo-clippy", allow(blacklisted_name, option_map_unit_fn))]
#![cfg_attr(feature = "cargo-clippy", allow(blacklisted_name))]
// Enable lint group collections
#![warn(nonstandard_style, edition_2018, rust_2018_idioms, bad_style, unused)]
// standalone lints
@ -31,8 +30,6 @@
no_mangle_generic_items,
overflowing_literals,
plugin_as_library,
private_no_mangle_fns,
private_no_mangle_statics,
unconditional_recursion,
unions_with_drop_fields,
while_true,

View File

@ -19,15 +19,9 @@
#![cfg_attr(
feature = "cargo-clippy",
allow(
clone_on_ref_ptr,
blacklisted_name,
match_same_arms,
option_map_unit_fn
)
allow(clone_on_ref_ptr, blacklisted_name, match_same_arms,)
)]
#![allow(unknown_lints)]
#![feature(rust_2018_preview)]
// Enable lint group collections
#![warn(nonstandard_style, edition_2018, rust_2018_idioms, bad_style, unused)]
// standalone lints
@ -38,8 +32,6 @@
no_mangle_generic_items,
overflowing_literals,
plugin_as_library,
private_no_mangle_fns,
private_no_mangle_statics,
unconditional_recursion,
unions_with_drop_fields,
while_true,