mirror of
https://github.com/emilk/egui.git
synced 2026-08-29 04:40:03 -04:00
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>
14 lines
344 B
Plaintext
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/
|