-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
46 lines (37 loc) · 833 Bytes
/
.gitignore
File metadata and controls
46 lines (37 loc) · 833 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
# Compiled binaries, including the one created by 'go build'
# If your main package is in the root, it creates a binary named after the directory
# or the name you specified (like 'app' in your Dockerfile).
# It's safest to ignore binaries where they are usually created.
/app
/data-parser
/*.exe
/*.dll
/*.so
/bin/
# Test files
# Ignores test coverage reports and test binaries
*.test
*.out
*coverage*.html
# Dependency files and module cache
# Ignores the Go module cache directories
/pkg/
/vendor/
/.cache/
# Cross-compilation build files
# These are temporary files generated when compiling for different architectures
/dist/
# --- Standard OS and IDE Files ---
# Mac OS specific
.DS_Store
# Windows specific
Thumbs.db
# Linux specific
*~
# Vim/Nano swap files
.*.swp
.nfs*
# VS Code
.vscode/
# IntelliJ / GoLand
.idea/