.gitignore 969 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. # Compiled Object files, Static and Dynamic libs (Shared Objects)
  2. *.o
  3. *.a
  4. *.so
  5. # Folders
  6. _obj
  7. _test
  8. # Architecture specific extensions/prefixes
  9. *.[568vq]
  10. [568vq].out
  11. *.cgo1.go
  12. *.cgo2.c
  13. _cgo_defun.c
  14. _cgo_gotypes.go
  15. _cgo_export.*
  16. _testmain.go
  17. *.exe
  18. *.test
  19. *.prof
  20. # =========================
  21. # Operating System Files
  22. # =========================
  23. # OSX
  24. # =========================
  25. .DS_Store
  26. .AppleDouble
  27. .LSOverride
  28. # Thumbnails
  29. ._*
  30. # Files that might appear in the root of a volume
  31. .DocumentRevisions-V100
  32. .fseventsd
  33. .Spotlight-V100
  34. .TemporaryItems
  35. .Trashes
  36. .VolumeIcon.icns
  37. # Directories potentially created on remote AFP share
  38. .AppleDB
  39. .AppleDesktop
  40. Network Trash Folder
  41. Temporary Items
  42. .apdisk
  43. # Windows
  44. # =========================
  45. # Windows image file caches
  46. Thumbs.db
  47. ehthumbs.db
  48. # Folder config file
  49. Desktop.ini
  50. # Recycle Bin used on file shares
  51. $RECYCLE.BIN/
  52. # Windows Installer files
  53. *.cab
  54. *.msi
  55. *.msm
  56. *.msp
  57. # Windows shortcuts
  58. *.lnk
  59. *.wasm
  60. *.wast