.gitignore 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. # ---> Vim
  2. [._]*.s[a-w][a-z]
  3. [._]s[a-w][a-z]
  4. *.un~
  5. Session.vim
  6. .netrwhist
  7. *~
  8. # ---> Tags
  9. # Ignore tags created by etags, ctags, gtags (GNU global) and cscope
  10. TAGS
  11. !TAGS/
  12. tags
  13. !tags/
  14. gtags.files
  15. GTAGS
  16. GRTAGS
  17. GPATH
  18. cscope.files
  19. cscope.out
  20. cscope.in.out
  21. cscope.po.out
  22. # ---> Go
  23. # Compiled Object files, Static and Dynamic libs (Shared Objects)
  24. *.o
  25. *.a
  26. *.so
  27. # Folders
  28. _obj
  29. _test
  30. # Architecture specific extensions/prefixes
  31. *.[568vq]
  32. [568vq].out
  33. *.cgo1.go
  34. *.cgo2.c
  35. _cgo_defun.c
  36. _cgo_gotypes.go
  37. _cgo_export.*
  38. _testmain.go
  39. *.exe
  40. *.test
  41. *.prof
  42. # ---> macOS
  43. .DS_Store
  44. .AppleDouble
  45. .LSOverride
  46. # Icon must end with two \r
  47. Icon
  48. # Thumbnails
  49. ._*
  50. # Files that might appear in the root of a volume
  51. .DocumentRevisions-V100
  52. .fseventsd
  53. .Spotlight-V100
  54. .TemporaryItems
  55. .Trashes
  56. .VolumeIcon.icns
  57. # Directories potentially created on remote AFP share
  58. .AppleDB
  59. .AppleDesktop
  60. Network Trash Folder
  61. Temporary Items
  62. .apdisk
  63. # ---> Windows
  64. # Windows image file caches
  65. Thumbs.db
  66. ehthumbs.db
  67. # Folder config file
  68. Desktop.ini
  69. # Recycle Bin used on file shares
  70. $RECYCLE.BIN/
  71. # Windows Installer files
  72. *.cab
  73. *.msi
  74. *.msm
  75. *.msp
  76. # Windows shortcuts
  77. *.lnk