chore(gitignore): ignore les target/ de sous-crates Cargo

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-07-02 14:49:45 +02:00
parent 62915eec4d
commit fccc1e2f0f

2
.gitignore vendored
View File

@ -1,6 +1,8 @@
# ─── Rust / Cargo ─────────────────────────────────────────────────────────── # ─── Rust / Cargo ───────────────────────────────────────────────────────────
# Build output for the whole workspace (Cargo.lock IS committed — it's an app). # Build output for the whole workspace (Cargo.lock IS committed — it's an app).
/target/ /target/
# ...et les target/ des sous-crates du workspace (règle non ancrée).
target/
**/*.rs.bk **/*.rs.bk
# ─── Node / frontend ──────────────────────────────────────────────────────── # ─── Node / frontend ────────────────────────────────────────────────────────