From 6d4ac458e06f5268c09e9584adc0616ea593c445 Mon Sep 17 00:00:00 2001 From: Lorenzo Giannini <155078354+LoweredgamesDev@users.noreply.github.com> Date: Wed, 9 Oct 2024 23:13:27 +0200 Subject: [PATCH] Improvements .gitignore (#15798) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Objective I tried to improve gitignore. I am not a programming expert yet, so I don't know all the junk files. If someone provides me with a list of other files, can you point me to it below? I also tried to sort them logically, hope it works. > This is also my first PR in the history of this engine. and I'm very happy 😄 --- .gitignore | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 10507748f59a9..42b22faa253ce 100644 --- a/.gitignore +++ b/.gitignore @@ -1,26 +1,33 @@ +# Rust build artifacts /target crates/*/target **/*.rs.bk +/benches/target +/tools/compile_fail_utils/target + +# Cargo Cargo.lock .cargo/config .cargo/config.toml + +# IDE files /.idea /.vscode .zed -/benches/target -/tools/compile_fail_utils/target dxcompiler.dll dxil.dll -# Generated by "examples/scene/scene.rs" -assets/scenes/load_scene_example-new.scn.ron - -# Generated by "examples/window/screenshot.rs" -**/screenshot-*.png - +# Bevy Assets assets/**/*.meta crates/bevy_asset/imported_assets imported_assets +# Bevy Examples example_showcase_config.ron example-showcase-reports/ + +# Generated by "examples/scene/scene.rs" +assets/scenes/load_scene_example-new.scn.ron + +# Generated by "examples/window/screenshot.rs" +**/screenshot-*.png