fix clippy and check it on ci (#18)

This commit is contained in:
extrawurst
2025-03-26 01:20:38 +01:00
committed by GitHub
parent 17406b1f00
commit 9842148010
14 changed files with 85 additions and 53 deletions

View File

@@ -16,7 +16,7 @@ avian3d = { version = "0.2.1", default-features = false, features = [
"parry-f32",
"collider-from-mesh",
"bevy_scene",
"bevy_picking", # todo: Consider if this one is necessary
"bevy_picking", # todo: Consider if this one is necessary
"parallel",
] }
bevy = "0.15.3"
@@ -27,3 +27,7 @@ bevy_sprite3d = "4.0.0"
rand = "0.8.5"
bevy-inspector-egui = { version = "0.30", optional = true }
bevy_polyline = "0.11.0"
[lints.clippy]
too_many_arguments = "allow"
type_complexity = "allow"