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
54
# Go-specific ignores
**/bin/
**/pkg/
**/out/
**/*.exe
**/*.test
**/*.prof
**/*.a
**/*.cover
**/.cgo/
# Rust-specific ignores
**/target/
**/*.rs.bk
**/*.pdb
**/*.dSYM/
**/*.stackdump
# GoLand / IntelliJ IDEA specific
**/.idea/
# VS Code specific
**/.vscode/
# macOS specific
**/.DS_Store
# Logs and temporary files
**/*.log
**/*.tmp
**/*.swp
**/*.bak
**/*.old
**/*.save
# Debug, build and temporary directories
**/debug/
**/target/
# Backup files
**/*.rs.bk
**/*.pdb
**/*.xlsx
**/*.swp
# Environment files
**/.env
**/*env*/
# Other
**/*.test
**/*.prof
**/*.out
**/*.cover