1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-29 04:40:03 -04:00

Actually keep ignoring the legacy target_ra folder

A trailing `#` does not start a comment in `.gitignore`, so
`**/target_ra # legacy Rust Analyzer target dir` was matching a path
literally named that, and the leftover `target_ra` folders in existing
checkouts stopped being ignored.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
Emil Ernerfeldt
2026-08-28 14:31:33 +02:00
parent 97b4ef6c9f
commit 249b362d7b

4
.gitignore vendored
View File

@@ -1,6 +1,8 @@
.DS_Store
# `target_ra` and `target_wasm` are legacy locations; they now live inside `target/`.
# Keep them on their own lines: a trailing `#` is not a comment in .gitignore.
**/target
**/target_ra # legacy Rust Analyzer target dir
**/target_ra
**/target_wasm
**/tests/snapshots/**/*.diff.png
**/tests/snapshots/**/*.new.png