mirror of
https://github.com/bevyengine/bevy
synced 2024-11-21 04:03:26 +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
|
||||
/target
|
||||
crates/*/target
|
||||
target
|
||||
crates/**/target
|
||||
benches/**/target
|
||||
tools/**/target
|
||||
**/*.rs.bk
|
||||
/benches/target
|
||||
/tools/compile_fail_utils/target
|
||||
|
||||
# Cargo
|
||||
Cargo.lock
|
||||
|
@ -11,8 +11,8 @@ Cargo.lock
|
|||
.cargo/config.toml
|
||||
|
||||
# IDE files
|
||||
/.idea
|
||||
/.vscode
|
||||
.idea
|
||||
.vscode
|
||||
.zed
|
||||
dxcompiler.dll
|
||||
dxil.dll
|
||||
|
|
Loading…
Reference in a new issue