1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-29 04:40:03 -04:00
Files
egui/.gitignore
Emil Ernerfeldt 249b362d7b 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>
2026-08-28 14:31:33 +02:00

14 lines
344 B
Plaintext

.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
**/target_wasm
**/tests/snapshots/**/*.diff.png
**/tests/snapshots/**/*.new.png
**/tests/snapshots/**/*.old.png
/.*.json
/.vscode
/media/*
.idea/