Skip to content

Commit

Permalink
this one maybe
Browse files Browse the repository at this point in the history
  • Loading branch information
ameknite committed Nov 17, 2023
1 parent f199686 commit 8e84bdf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions crates/bevy_gltf/src/loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -862,6 +862,7 @@ fn load_node(
active_camera_found: &mut bool,
parent_transform: &Transform,
) -> Result<(), GltfError> {
let x = 1;
let transform = gltf_node.transform();
let mut gltf_error = None;
let transform = Transform::from_matrix(Mat4::from_cols_array_2d(&transform.matrix()));
Expand Down
16 changes: 8 additions & 8 deletions tools/ci/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ bitflags! {
}
}

const CLIPPY_FLAGS: [&str; 6] = [
"-Wclippy::doc_markdown",
"-Wclippy::redundant_else",
"-Wclippy::match_same_arms",
"-Wclippy::semicolon_if_nothing_returned",
"-Wclippy::map_flatten",
"-Dwarnings",
];
// const CLIPPY_FLAGS: [&str; 6] = [
// "-Wclippy::doc_markdown",
// "-Wclippy::redundant_else",
// "-Wclippy::match_same_arms",
// "-Wclippy::semicolon_if_nothing_returned",
// "-Wclippy::map_flatten",
// "-Dwarnings",
// ];

fn main() {
// When run locally, results may differ from actual CI runs triggered by
Expand Down

0 comments on commit 8e84bdf

Please sign in to comment.