mirror of
https://github.com/bevyengine/bevy
synced 2024-11-21 20:23:28 +00:00
Improvements .gitignore (#15798)
# 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 😄
This commit is contained in:
parent
3da0ef048e
commit
6d4ac458e0
1 changed files with 16 additions and 9 deletions
25
.gitignore
vendored
25
.gitignore
vendored
|
@ -1,26 +1,33 @@
|
||||||
|
# Rust build artifacts
|
||||||
/target
|
/target
|
||||||
crates/*/target
|
crates/*/target
|
||||||
**/*.rs.bk
|
**/*.rs.bk
|
||||||
|
/benches/target
|
||||||
|
/tools/compile_fail_utils/target
|
||||||
|
|
||||||
|
# Cargo
|
||||||
Cargo.lock
|
Cargo.lock
|
||||||
.cargo/config
|
.cargo/config
|
||||||
.cargo/config.toml
|
.cargo/config.toml
|
||||||
|
|
||||||
|
# IDE files
|
||||||
/.idea
|
/.idea
|
||||||
/.vscode
|
/.vscode
|
||||||
.zed
|
.zed
|
||||||
/benches/target
|
|
||||||
/tools/compile_fail_utils/target
|
|
||||||
dxcompiler.dll
|
dxcompiler.dll
|
||||||
dxil.dll
|
dxil.dll
|
||||||
|
|
||||||
|
# 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"
|
# Generated by "examples/scene/scene.rs"
|
||||||
assets/scenes/load_scene_example-new.scn.ron
|
assets/scenes/load_scene_example-new.scn.ron
|
||||||
|
|
||||||
# Generated by "examples/window/screenshot.rs"
|
# Generated by "examples/window/screenshot.rs"
|
||||||
**/screenshot-*.png
|
**/screenshot-*.png
|
||||||
|
|
||||||
assets/**/*.meta
|
|
||||||
crates/bevy_asset/imported_assets
|
|
||||||
imported_assets
|
|
||||||
|
|
||||||
example_showcase_config.ron
|
|
||||||
example-showcase-reports/
|
|
||||||
|
|
Loading…
Reference in a new issue