-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
46 lines (41 loc) · 923 Bytes
/
.gitignore
File metadata and controls
46 lines (41 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# --- Rust Basics ---
# The target directory contains all compiled artifacts
/target/
# Remove cargo-generate generated files
cargo-generate.toml
# --- RustRover / JetBrains IDE ---
# Project-specific settings
.idea/
# Ignore workspace-specific user settings
.idea/workspace.xml
.idea/usage.statistics.xml
.idea/dictionary.xml
.idea/shelf/
# If you use the JetBrains HTTP Client
.idea/httpRequests/
# --- macOS Specific ---
# General macOS files
.DS_Store
.AppleDouble
.LSOverride
# Thumbnails
._*
# Files that might be created on network drives or external media
.Spotlight-V100
.Trashes
# --- Docker ---
# Ignore local data folders if you mount volumes
.docker/
# If you use docker-compose overrides for local dev
docker-compose.override.yml
# Ignore logs
*.log
# --- Environment & Secrets ---
# Never commit credentials or local overrides
.env
.env.local
.env.*.local
# --- Backup/Temporary Files ---
*.bak
*.swp
*~