diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 33 |
1 files changed, 22 insertions, 11 deletions
@@ -1,15 +1,26 @@ -# Binaries for programs and plugins -*.exe -*.exe~ -*.dll +# Compiled Object files, Static and Dynamic libs (Shared Objects) +*.o +*.a *.so -*.dylib -# Test binary, build with `go test -c` -*.test +# Folders +_obj +_test + +# Architecture specific extensions/prefixes +*.[568vq] +[568vq].out + +*.cgo1.go +*.cgo2.c +_cgo_defun.c +_cgo_gotypes.go +_cgo_export.* -# Output of the go coverage tool, specifically when used with LiteIDE -*.out +_testmain.go + +*.exe +*.test +*.prof -# IDEA -.idea
\ No newline at end of file +.idea |