generated from soypat/go-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
53 lines (48 loc) · 818 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
# Go workspaces.
go.work
go.work.sum
# 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
*.bin
# The picobin binary when running go build ./cmd/picobin
picobin
!cmd/picobin
!boot/picobin
!testdata/blink.elf
!testdata/helloc.elf
!testdata/pca10040-blinky.elf
# 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
# If running a python script.
*/__pycache__/*