generated from soypat/go-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
60 lines (52 loc) · 803 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
54
55
56
57
58
59
60
# Go workspaces.
go.work
go.work.sum
!examples/_dualcontour/go.work
# Test binary, built with `go test -c`
*.test
# Dependency directories after running `go mod vendor`
vendor/
# Binaries for programs and plugins
*.elf
*.uf2
*.exe
*.exe~
*.dll
*.so
*.dylib
*.hex
# `__debug_bin` Debug binary generated in VSCode when using the built-in debugger.
*bin
*/__debug_bin*
# IDE
.vscode/
# For local development and testing create `local` directories.
local
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
*.cov
# Log files and common data formats.
*.log
*.Log
*.LOG
*.csv
*.tsv
*.dat
*.json
*.xlsx
*.xls
*.zip
*.gz
*.tar
*.prof
*.pprof
*.cpuprof
*.heapprof
# image outputs
*.png
# GPU shaders
*.glsl
# 3D triangle files.
*.stl
# If running a python script.
*/__pycache__/*