mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 12:43:34 +00:00
clippy happy
This commit is contained in:
parent
61c683fb6a
commit
c217238c5e
4 changed files with 10 additions and 10 deletions
|
@ -38,6 +38,7 @@ undocumented_unsafe_blocks = "warn"
|
||||||
redundant_else = "warn"
|
redundant_else = "warn"
|
||||||
match_same_arms = "warn"
|
match_same_arms = "warn"
|
||||||
semicolon_if_nothing_returned = "warn"
|
semicolon_if_nothing_returned = "warn"
|
||||||
|
doc_lazy_continuation = "allow"
|
||||||
|
|
||||||
ptr_as_ptr = "warn"
|
ptr_as_ptr = "warn"
|
||||||
ptr_cast_constness = "warn"
|
ptr_cast_constness = "warn"
|
||||||
|
|
|
@ -1511,6 +1511,7 @@ mod tests {
|
||||||
Empty,
|
Empty,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(dead_code)]
|
||||||
#[derive(Asset, TypePath)]
|
#[derive(Asset, TypePath)]
|
||||||
pub struct StructTestAsset {
|
pub struct StructTestAsset {
|
||||||
#[dependency]
|
#[dependency]
|
||||||
|
@ -1519,6 +1520,7 @@ mod tests {
|
||||||
embedded: TestAsset,
|
embedded: TestAsset,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(dead_code)]
|
||||||
#[derive(Asset, TypePath)]
|
#[derive(Asset, TypePath)]
|
||||||
pub struct TupleTestAsset(#[dependency] Handle<TestAsset>);
|
pub struct TupleTestAsset(#[dependency] Handle<TestAsset>);
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,6 @@
|
||||||
|
|
||||||
use crate::{ButtonInput, ButtonState};
|
use crate::{ButtonInput, ButtonState};
|
||||||
use bevy_ecs::entity::Entity;
|
use bevy_ecs::entity::Entity;
|
||||||
#[cfg(feature = "bevy_reflect")]
|
|
||||||
use bevy_ecs::reflect::ReflectResource;
|
|
||||||
use bevy_ecs::system::Resource;
|
|
||||||
use bevy_ecs::{
|
use bevy_ecs::{
|
||||||
change_detection::DetectChangesMut,
|
change_detection::DetectChangesMut,
|
||||||
event::{Event, EventReader},
|
event::{Event, EventReader},
|
||||||
|
@ -12,7 +9,7 @@ use bevy_ecs::{
|
||||||
};
|
};
|
||||||
use bevy_math::Vec2;
|
use bevy_math::Vec2;
|
||||||
#[cfg(feature = "bevy_reflect")]
|
#[cfg(feature = "bevy_reflect")]
|
||||||
use bevy_reflect::{std_traits::ReflectDefault, Reflect};
|
use bevy_reflect::Reflect;
|
||||||
|
|
||||||
#[cfg(all(feature = "serialize", feature = "bevy_reflect"))]
|
#[cfg(all(feature = "serialize", feature = "bevy_reflect"))]
|
||||||
use bevy_reflect::{ReflectDeserialize, ReflectSerialize};
|
use bevy_reflect::{ReflectDeserialize, ReflectSerialize};
|
||||||
|
|
|
@ -496,7 +496,7 @@ header_message = \"Examples (WebGL2)\"
|
||||||
// and other characters that don't
|
// and other characters that don't
|
||||||
// work well in a URL path.
|
// work well in a URL path.
|
||||||
let category_path = root_path.join(
|
let category_path = root_path.join(
|
||||||
&to_show
|
to_show
|
||||||
.category
|
.category
|
||||||
.replace(['(', ')'], "")
|
.replace(['(', ')'], "")
|
||||||
.replace(' ', "-")
|
.replace(' ', "-")
|
||||||
|
@ -522,7 +522,7 @@ weight = {}
|
||||||
.unwrap();
|
.unwrap();
|
||||||
categories.insert(to_show.category.clone(), 0);
|
categories.insert(to_show.category.clone(), 0);
|
||||||
}
|
}
|
||||||
let example_path = category_path.join(&to_show.technical_name.replace('_', "-"));
|
let example_path = category_path.join(to_show.technical_name.replace('_', "-"));
|
||||||
let _ = fs::create_dir_all(&example_path);
|
let _ = fs::create_dir_all(&example_path);
|
||||||
|
|
||||||
let code_path = example_path.join(Path::new(&to_show.path).file_name().unwrap());
|
let code_path = example_path.join(Path::new(&to_show.path).file_name().unwrap());
|
||||||
|
@ -678,7 +678,7 @@ header_message = \"Examples ({})\"
|
||||||
let category_path = root_path.join(&to_build.category);
|
let category_path = root_path.join(&to_build.category);
|
||||||
let _ = fs::create_dir_all(&category_path);
|
let _ = fs::create_dir_all(&category_path);
|
||||||
|
|
||||||
let example_path = category_path.join(&to_build.technical_name.replace('_', "-"));
|
let example_path = category_path.join(to_build.technical_name.replace('_', "-"));
|
||||||
let _ = fs::create_dir_all(&example_path);
|
let _ = fs::create_dir_all(&example_path);
|
||||||
|
|
||||||
if website_hacks {
|
if website_hacks {
|
||||||
|
@ -688,17 +688,17 @@ header_message = \"Examples ({})\"
|
||||||
|
|
||||||
let _ = fs::rename(
|
let _ = fs::rename(
|
||||||
Path::new("examples/wasm/target/wasm_example.js"),
|
Path::new("examples/wasm/target/wasm_example.js"),
|
||||||
&example_path.join("wasm_example.js"),
|
example_path.join("wasm_example.js"),
|
||||||
);
|
);
|
||||||
if optimize_size {
|
if optimize_size {
|
||||||
let _ = fs::rename(
|
let _ = fs::rename(
|
||||||
Path::new("examples/wasm/target/wasm_example_bg.wasm.optimized"),
|
Path::new("examples/wasm/target/wasm_example_bg.wasm.optimized"),
|
||||||
&example_path.join("wasm_example_bg.wasm"),
|
example_path.join("wasm_example_bg.wasm"),
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
let _ = fs::rename(
|
let _ = fs::rename(
|
||||||
Path::new("examples/wasm/target/wasm_example_bg.wasm"),
|
Path::new("examples/wasm/target/wasm_example_bg.wasm"),
|
||||||
&example_path.join("wasm_example_bg.wasm"),
|
example_path.join("wasm_example_bg.wasm"),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
pb.inc();
|
pb.inc();
|
||||||
|
|
Loading…
Reference in a new issue