-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
53 lines (40 loc) · 746 Bytes
/
Copy path.gitignore
File metadata and controls
53 lines (40 loc) · 746 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
47
48
49
50
51
52
53
Python/venv
__pycache__/
# Ignore Rust build artifacts
**/target/
**/debug/
**/release/
# Ignore Cargo lock file (only for libraries, keep for binaries)
**/Cargo.lock
# Ignore Rust logs and IDE files
**/*.log
**/*.rs.bk
# VS Code settings (optional)
.vscode/
# Ignore Rustup & Cargo related files
.cargo/
.rustup/
# Ignore play_ground changes
Rust/play_ground/
# ignore js node modules
**/node_modules/
# Ignore IntelliJ IDE configs
.idea/
*.iml
# Ignore Gradle build outputs and dirs
build/
out/
.gradle/
**/dist
# Optional: ignore OS/Editor-specific files
.DS_Store
*.swp
*.swo
Thumbs.db
# Optional: ignore logs and temporary files
# *.log // already included above
*.tmp
# ignore java build code
**/bin/
# ignore object files
*.o