mirror of
https://github.com/PR0M3TH3AN/Marlin.git
synced 2025-09-08 15:18:44 +00:00

Remove unnecessary build artifacts from the target directory, including various fingerprint files and cached information. Update the .gitignore to ensure these files are not tracked in the future, streamlining the project and reducing clutter.
61 lines
659 B
Plaintext
61 lines
659 B
Plaintext
# === Rust build artifacts ===
|
|
|
|
/target/
|
|
/Cargo.lock
|
|
|
|
# === IDE & Editor settings ===
|
|
|
|
.idea/
|
|
.vscode/
|
|
\*.swp
|
|
\*.swo
|
|
\*.bak
|
|
\*\~
|
|
|
|
# === OS files ===
|
|
|
|
.DS\_Store
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
desktop.ini
|
|
|
|
# === Logs & Runtime output ===
|
|
|
|
\*.log
|
|
\*.out
|
|
\*.err
|
|
|
|
# === Coverage reports ===
|
|
|
|
cobertura.xml
|
|
tarpaulin-report.html
|
|
|
|
# === Test databases & scratch data ===
|
|
|
|
/tmp/
|
|
\*.test.db
|
|
test.db
|
|
|
|
# === Project databases ===
|
|
|
|
/index.db
|
|
\*.sqlite
|
|
\*.sqlite-wal
|
|
\*.sqlite-shm
|
|
|
|
# === Benchmarks & backups ===
|
|
|
|
/bench/corpus/
|
|
/bench/backups/
|
|
|
|
# === Environment variables & secrets ===
|
|
|
|
.env
|
|
.env.\*
|
|
|
|
# === Other generated files ===
|
|
|
|
\*.html
|
|
repo-context.txt
|
|
saved\_config.yaml
|