-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
53 lines (39 loc) · 902 Bytes
/
.gitignore
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
# Ignore the Go binary executables
/bin/
/build/
/out/
# Ignore the Go test binary
testdata/
# Ignore the Go module and dependency files (shouldn't be ignored if you use Go modules)
/vendor/
# Ignore compiled object files
*.o
*.a
# Ignore IDE/editor-specific files
# VS Code
.vscode/
# GoLand (JetBrains Go IDE)
.idea/
# Sublime Text
*.sublime-workspace
*.sublime-project
# Mac OS X system files
.DS_Store
# Windows system files
Thumbs.db
# Ignore log files
*.log
# Ignore environment files (if used)
.env
# Ignore the Go module cache (optional if you want to ignore it)
# This is not always necessary with Go modules, but can be useful
.golangci-lint.cache/
# Ignore test or coverage files (generated by testing)
coverage.out
# Ignore files for Docker (if present)
docker-compose.override.yml
Dockerfile*
# Ignore files related to Go tools like `godoc`, `godef`, etc.
*.test
*.prof
*.out