mirror of
https://github.com/bevyengine/bevy
synced 2024-11-21 20:23:28 +00:00
Gitignore all target folders (#16336)
# Objective Some target folders (such as `crates\bevy_color\crates\gen_tests\target`) are not in the `.gitignore`. ## Solution Use a better pattern. ## Testing Tested locally
This commit is contained in:
parent
1d7f663475
commit
3f30ce2e47
1 changed files with 6 additions and 6 deletions
12
.gitignore
vendored
12
.gitignore
vendored
|
@ -1,9 +1,9 @@
|
||||||
# Rust build artifacts
|
# Rust build artifacts
|
||||||
/target
|
target
|
||||||
crates/*/target
|
crates/**/target
|
||||||
|
benches/**/target
|
||||||
|
tools/**/target
|
||||||
**/*.rs.bk
|
**/*.rs.bk
|
||||||
/benches/target
|
|
||||||
/tools/compile_fail_utils/target
|
|
||||||
|
|
||||||
# Cargo
|
# Cargo
|
||||||
Cargo.lock
|
Cargo.lock
|
||||||
|
@ -11,8 +11,8 @@ Cargo.lock
|
||||||
.cargo/config.toml
|
.cargo/config.toml
|
||||||
|
|
||||||
# IDE files
|
# IDE files
|
||||||
/.idea
|
.idea
|
||||||
/.vscode
|
.vscode
|
||||||
.zed
|
.zed
|
||||||
dxcompiler.dll
|
dxcompiler.dll
|
||||||
dxil.dll
|
dxil.dll
|
||||||
|
|
Loading…
Reference in a new issue