.gitignore raw

   1  # Compiled Object files, Static and Dynamic libs (Shared Objects)
   2  *.o
   3  *.a
   4  *.so
   5  
   6  # Idea Directory
   7  .idea
   8  
   9  # Folders
  10  _obj
  11  _test
  12  
  13  # Architecture specific extensions/prefixes
  14  *.[568vq]
  15  [568vq].out
  16  
  17  *.cgo1.go
  18  *.cgo2.c
  19  _cgo_defun.c
  20  _cgo_gotypes.go
  21  _cgo_export.*
  22  
  23  _testmain.go
  24  
  25  *.exe
  26  *.test
  27  *.prof
  28  .DS_Store
  29