Skip to content

Commit

Permalink
fix-fmt-lint
Browse files Browse the repository at this point in the history
  • Loading branch information
naomijub committed Dec 1, 2023
1 parent 64eda52 commit ea08dde
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ bevy_xpbd_3d = {version="0.3", default-features = false, optional = true}
[lints.rust]
future-incompatible = "warn"
nonstandard_style = "deny"
type_complexity = { level = "allow", priority = 2 }

[lints.clippy]
nursery = { level = "deny", priority = 0 }
Expand All @@ -66,6 +67,7 @@ needless_pass_by_ref_mut = { level = "allow", priority = 2 }
significant_drop_in_scrutinee = { level = "allow", priority = 2 }
significant_drop_tightening = { level = "allow", priority = 2 }
type_complexity = { level = "allow", priority = 2 }
too_many_arguments = { level = "allow", priority = 2 }

[profile.dev.package.bevy_xpbd_3d]
opt-level = 3
Expand Down
3 changes: 2 additions & 1 deletion src/editor/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ use bevy_mod_picking::{backends::raycast::RaycastPickable, prelude::*, PickableB
use bevy_panorbit_camera::{PanOrbitCamera, PanOrbitCameraPlugin, PanOrbitCameraSystemSet};
use prefab::prefab::{
component::CameraPlay,
save::{SaveConfig, SaveState}, PrefabPlugin,
save::{SaveConfig, SaveState},
PrefabPlugin,
};
use shared::*;

Expand Down

0 comments on commit ea08dde

Please sign in to comment.