.gitignore raw
1 # The standard Go .gitignore file follows. (Sourced from: github.com/github/gitignore/master/Go.gitignore)
2 # Compiled Object files, Static and Dynamic libs (Shared Objects)
3 *.o
4 *.a
5 *.so
6
7 # Folders
8 _obj
9 _test
10 .DS_Store
11 .idea/
12 .vscode/
13
14 # Architecture specific extensions/prefixes
15 *.[568vq]
16 [568vq].out
17
18 *.cgo1.go
19 *.cgo2.c
20 _cgo_defun.c
21 _cgo_gotypes.go
22 _cgo_export.*
23
24 _testmain.go
25
26 *.exe
27 *.test
28 *.prof
29
30 # go-autorest specific
31 vendor/
32 autorest/azure/example/example
33