From 575db6f51d082fd3f7be762497796137474c2f2a Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Sat, 24 Jul 2021 20:01:11 +0200 Subject: [PATCH 01/10] Resolve unused '#[allow(clippy::assign_op_pattern)]' error supressions --- common/src/states/utils.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/common/src/states/utils.rs b/common/src/states/utils.rs index a6020bd393..5a05380ae5 100644 --- a/common/src/states/utils.rs +++ b/common/src/states/utils.rs @@ -261,7 +261,6 @@ pub fn handle_move(data: &JoinData<'_>, update: &mut StateUpdate, efficiency: f3 } /// Updates components to move player as if theyre on ground or in air -#[allow(clippy::assign_op_pattern)] // TODO: Pending review in #587 fn basic_move(data: &JoinData<'_>, update: &mut StateUpdate, efficiency: f32) { let efficiency = efficiency * data.stats.move_speed_modifier * data.stats.friction_modifier; From c577a7d677f32b542b5c6cb4058e66b23226449a Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Sat, 24 Jul 2021 20:04:52 +0200 Subject: [PATCH 02/10] Resolve unused '#[allow(clippy::while_let_on_iterator)]' error supressions --- common/systems/src/character_behavior.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/common/systems/src/character_behavior.rs b/common/systems/src/character_behavior.rs index e9de5617c3..356b9b5c53 100644 --- a/common/systems/src/character_behavior.rs +++ b/common/systems/src/character_behavior.rs @@ -97,7 +97,6 @@ impl<'a> System<'a> for Sys { const ORIGIN: Origin = Origin::Common; const PHASE: Phase = Phase::Create; - #[allow(clippy::while_let_on_iterator)] // TODO: Pending review in #587 fn run( _job: &mut Job, ( From 1ac3d1b7618035f5b1140fe919821632dd2d9e89 Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Sat, 24 Jul 2021 20:08:08 +0200 Subject: [PATCH 03/10] Resolve unused '#[allow(clippy::same_item_push)]' error supressions --- server/src/events/inventory_manip.rs | 1 - voxygen/src/scene/particle.rs | 2 -- 2 files changed, 3 deletions(-) diff --git a/server/src/events/inventory_manip.rs b/server/src/events/inventory_manip.rs index 842ad862ed..2bf34df41a 100644 --- a/server/src/events/inventory_manip.rs +++ b/server/src/events/inventory_manip.rs @@ -38,7 +38,6 @@ pub fn snuff_lantern(storage: &mut WriteStorage, entity: Ecs } #[allow(clippy::blocks_in_if_conditions)] -#[allow(clippy::same_item_push)] // TODO: Pending review in #587 pub fn handle_inventory(server: &mut Server, entity: EcsEntity, manip: comp::InventoryManip) { let state = server.state_mut(); diff --git a/voxygen/src/scene/particle.rs b/voxygen/src/scene/particle.rs index 7386b78598..7d9c032bf6 100644 --- a/voxygen/src/scene/particle.rs +++ b/voxygen/src/scene/particle.rs @@ -918,7 +918,6 @@ impl ParticleMgr { .join() { for (_, aura) in auras.auras.iter() { - #[allow(clippy::single_match)] match aura.aura_kind { aura::AuraKind::Buff { kind: buff::BuffKind::ProtectingWard, @@ -1045,7 +1044,6 @@ impl ParticleMgr { } } - #[allow(clippy::same_item_push)] // TODO: Pending review in #587 fn maintain_block_particles( &mut self, scene_data: &SceneData, From 70d0840e964045791a79eea0b7d9554bada72caf Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Sat, 24 Jul 2021 20:14:26 +0200 Subject: [PATCH 04/10] Resolve unused '#[allow(clippy::unnecessary_wraps)]' error supressions --- client/src/lib.rs | 3 --- plugin/derive/src/lib.rs | 2 -- server-cli/src/main.rs | 1 - server/src/events/inventory_manip.rs | 1 - server/src/sys/msg/general.rs | 1 - voxygen/src/scene/figure/mod.rs | 1 - 6 files changed, 9 deletions(-) diff --git a/client/src/lib.rs b/client/src/lib.rs index 0bad1e770a..935aeec197 100644 --- a/client/src/lib.rs +++ b/client/src/lib.rs @@ -1833,7 +1833,6 @@ impl Client { Ok(()) } - #[allow(clippy::unnecessary_wraps)] fn handle_server_in_game_msg( &mut self, frontend_events: &mut Vec, @@ -2012,7 +2011,6 @@ impl Client { Ok(()) } - #[allow(clippy::unnecessary_wraps)] fn handle_server_terrain_msg(&mut self, msg: ServerGeneral) -> Result<(), Error> { prof_span!("handle_server_terrain_mgs"); match msg { @@ -2034,7 +2032,6 @@ impl Client { Ok(()) } - #[allow(clippy::unnecessary_wraps)] fn handle_server_character_screen_msg( &mut self, events: &mut Vec, diff --git a/plugin/derive/src/lib.rs b/plugin/derive/src/lib.rs index 3a7ce33f8b..3ac534d03a 100644 --- a/plugin/derive/src/lib.rs +++ b/plugin/derive/src/lib.rs @@ -30,7 +30,6 @@ pub fn event_handler(_args: TokenStream, item: TokenStream) -> TokenStream { let out: proc_macro2::TokenStream = if fn_args.len() == 1 { quote! { - #[allow(clippy::unnecessary_wraps)] #[no_mangle] pub fn #fn_name(intern__ptr: i64, intern__len: i64) -> i64 { let input = ::veloren_plugin_rt::read_input(intern__ptr as _,intern__len as _).unwrap(); @@ -47,7 +46,6 @@ pub fn event_handler(_args: TokenStream, item: TokenStream) -> TokenStream { } } else { quote! { - #[allow(clippy::unnecessary_wraps)] #[no_mangle] pub fn #fn_name(intern__ptr: i64, intern__len: i64) -> i64 { let input = ::veloren_plugin_rt::read_input(intern__ptr as _,intern__len as _).unwrap(); diff --git a/server-cli/src/main.rs b/server-cli/src/main.rs index 2e6d78ea96..ba424df514 100644 --- a/server-cli/src/main.rs +++ b/server-cli/src/main.rs @@ -32,7 +32,6 @@ lazy_static::lazy_static! { } const TPS: u64 = 30; -#[allow(clippy::unnecessary_wraps)] fn main() -> io::Result<()> { let app = ArgvApp::from_args(); diff --git a/server/src/events/inventory_manip.rs b/server/src/events/inventory_manip.rs index 2bf34df41a..35176fa4cb 100644 --- a/server/src/events/inventory_manip.rs +++ b/server/src/events/inventory_manip.rs @@ -771,7 +771,6 @@ mod tests { use super::*; // Helper function - #[allow(clippy::unnecessary_wraps)] fn test_cylinder(pos: comp::Pos) -> Option { Some(Cylinder::from_components(pos.0, None, None, None)) } diff --git a/server/src/sys/msg/general.rs b/server/src/sys/msg/general.rs index e3787cc0ca..fa9a486bfa 100644 --- a/server/src/sys/msg/general.rs +++ b/server/src/sys/msg/general.rs @@ -14,7 +14,6 @@ use tracing::{debug, error, warn}; impl Sys { #[allow(clippy::too_many_arguments)] - #[allow(clippy::unnecessary_wraps)] fn handle_general_msg( server_emitter: &mut common::event::Emitter<'_, ServerEvent>, entity: specs::Entity, diff --git a/voxygen/src/scene/figure/mod.rs b/voxygen/src/scene/figure/mod.rs index 593a74e29d..3461ed824c 100644 --- a/voxygen/src/scene/figure/mod.rs +++ b/voxygen/src/scene/figure/mod.rs @@ -5221,7 +5221,6 @@ impl FigureColLights { } } - #[allow(clippy::unnecessary_wraps)] fn make_atlas(renderer: &mut Renderer) -> Result { let max_texture_size = renderer.max_texture_size(); let atlas_size = guillotiere::Size::new(max_texture_size as i32, max_texture_size as i32); From 632eba01453951bcc501913aebe2bcafe1a4b313 Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Sat, 24 Jul 2021 20:16:18 +0200 Subject: [PATCH 05/10] Resolve unused '#[allow(clippy::collapsible_if)]' error supressions --- voxygen/src/mesh/terrain.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/voxygen/src/mesh/terrain.rs b/voxygen/src/mesh/terrain.rs index 5561ef5b96..de5e59face 100644 --- a/voxygen/src/mesh/terrain.rs +++ b/voxygen/src/mesh/terrain.rs @@ -224,7 +224,6 @@ fn calc_light + ReadVol + Debug>( } } -#[allow(clippy::collapsible_if)] #[allow(clippy::many_single_char_names)] #[allow(clippy::type_complexity)] #[allow(clippy::needless_range_loop)] // TODO: Pending review in #587 From f039321cd73ab8aebbc58ae56b8bcee60499de25 Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Sat, 24 Jul 2021 20:19:16 +0200 Subject: [PATCH 06/10] Resolve unused '#[allow(clippy::redundant_pattern_matching)]' error supressions --- common/src/terrain/map.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/terrain/map.rs b/common/src/terrain/map.rs index 497d7740db..16e513da73 100644 --- a/common/src/terrain/map.rs +++ b/common/src/terrain/map.rs @@ -147,7 +147,7 @@ impl MapSizeLg { // not technically been stabilized yet, Clippy probably doesn't check for this // case yet. When it can, or when is_some() is stabilized as a `const fn`, // we should deal with this. - #[allow(clippy::redundant_pattern_matching, clippy::result_unit_err)] + #[allow(clippy::result_unit_err)] /// Construct a new `MapSizeLg`, returning an error if the needed invariants /// do not hold and the vector otherwise. /// From db48e30ea16aeb8c6edacd2536c8e9254b80f5af Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Sat, 24 Jul 2021 20:22:05 +0200 Subject: [PATCH 07/10] Resolve unused '#[allow(clippy::needless_range_loop)]' error supressions --- common/state/src/plugin/module.rs | 1 - voxygen/src/mesh/terrain.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/common/state/src/plugin/module.rs b/common/state/src/plugin/module.rs index 933de37a18..cf4322a578 100644 --- a/common/state/src/plugin/module.rs +++ b/common/state/src/plugin/module.rs @@ -177,7 +177,6 @@ pub fn from_i64(i: i64) -> u64 { u64::from_le_bytes(i.to_le_bytes()) } // This function is not public because this function should not be used without // an interface to limit unsafe behaviours -#[allow(clippy::needless_range_loop)] fn execute_raw( module: &PluginModule, instance: &mut Instance, diff --git a/voxygen/src/mesh/terrain.rs b/voxygen/src/mesh/terrain.rs index de5e59face..faff76a791 100644 --- a/voxygen/src/mesh/terrain.rs +++ b/voxygen/src/mesh/terrain.rs @@ -226,7 +226,6 @@ fn calc_light + ReadVol + Debug>( #[allow(clippy::many_single_char_names)] #[allow(clippy::type_complexity)] -#[allow(clippy::needless_range_loop)] // TODO: Pending review in #587 pub fn generate_mesh<'a, V: RectRasterableVol + ReadVol + Debug + 'static>( vol: &'a VolGrid2d, (range, max_texture_size, _boi): (Aabb, Vec2, &'a BlocksOfInterest), From 72058ef32ee994ca64843733866e7ac6edc2d501 Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Sat, 24 Jul 2021 20:24:57 +0200 Subject: [PATCH 08/10] Resolve unused '#[allow(clippy::eval_order_dependence)]' error supressions --- network/examples/fileshare/server.rs | 1 - world/src/layer/wildlife.rs | 1 - world/src/lib.rs | 1 - 3 files changed, 3 deletions(-) diff --git a/network/examples/fileshare/server.rs b/network/examples/fileshare/server.rs index 7a40d5be11..4069b3ea6b 100644 --- a/network/examples/fileshare/server.rs +++ b/network/examples/fileshare/server.rs @@ -118,7 +118,6 @@ impl Server { trace!("Stop connect_manager"); } - #[allow(clippy::eval_order_dependence)] async fn loop_participant(&self, p: Participant) { if let (Ok(cmd_out), Ok(file_out), Ok(cmd_in), Ok(file_in)) = ( p.open(3, Promises::ORDERED | Promises::CONSISTENCY, 0) diff --git a/world/src/layer/wildlife.rs b/world/src/layer/wildlife.rs index e82b1afbc7..ebb9c74ef6 100644 --- a/world/src/layer/wildlife.rs +++ b/world/src/layer/wildlife.rs @@ -262,7 +262,6 @@ pub fn spawn_manifest() -> Vec<(&'static str, DensityFn)> { ] } -#[allow(clippy::eval_order_dependence)] pub fn apply_wildlife_supplement<'a, R: Rng>( // NOTE: Used only for dynamic elements like chests and entities! dynamic_rng: &mut R, diff --git a/world/src/lib.rs b/world/src/lib.rs index 29531e8b8b..a67775ad06 100644 --- a/world/src/lib.rs +++ b/world/src/lib.rs @@ -206,7 +206,6 @@ impl World { tc.find_accessible_pos(spawn_wpos, ascending) } - #[allow(clippy::eval_order_dependence)] #[allow(clippy::result_unit_err)] pub fn generate_chunk( &self, From 360bf860ac595bf68d15bcf3fe6f45a4e060be23 Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Sat, 24 Jul 2021 20:26:15 +0200 Subject: [PATCH 09/10] Resolve unused '#[allow(clippy::manual_unwrap_or)]' error supressions --- voxygen/src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/voxygen/src/main.rs b/voxygen/src/main.rs index 6b880b0482..c655e738eb 100644 --- a/voxygen/src/main.rs +++ b/voxygen/src/main.rs @@ -22,7 +22,6 @@ use tracing::{error, info, warn}; #[cfg(feature = "egui-ui")] use veloren_voxygen::ui::egui::EguiState; -#[allow(clippy::manual_unwrap_or)] fn main() { let userdata_dir = common_base::userdata_dir_workspace!(); From 04700982d3936bd202f8e6653a39e471a647b2b4 Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Sat, 24 Jul 2021 20:35:13 +0200 Subject: [PATCH 10/10] Resolve unused '#[allow(clippy::option_map_unit_fn)]' error supressions --- client/examples/chat-cli/main.rs | 1 - voxygen/src/main.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/client/examples/chat-cli/main.rs b/client/examples/chat-cli/main.rs index e23f1bb8c5..92aff3c5cb 100644 --- a/client/examples/chat-cli/main.rs +++ b/client/examples/chat-cli/main.rs @@ -1,5 +1,4 @@ #![deny(unsafe_code)] -#![allow(clippy::option_map_unit_fn)] #![deny(clippy::clone_on_ref_ptr)] use common::{clock::Clock, comp}; diff --git a/voxygen/src/main.rs b/voxygen/src/main.rs index c655e738eb..9550a440e6 100644 --- a/voxygen/src/main.rs +++ b/voxygen/src/main.rs @@ -1,5 +1,4 @@ #![deny(unsafe_code)] -#![allow(clippy::option_map_unit_fn)] #![feature(bool_to_option)] #![recursion_limit = "2048"]