.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. # Created by https://www.gitignore.io/api/lua,linux,macos,windows
  2. ### Linux ###
  3. *~
  4. # temporary files which can be created if a process still has a handle open of a deleted file
  5. .fuse_hidden*
  6. # KDE directory preferences
  7. .directory
  8. # Linux trash folder which might appear on any partition or disk
  9. .Trash-*
  10. # .nfs files are created when an open file is removed but is still being accessed
  11. .nfs*
  12. ### Lua ###
  13. # Compiled Lua sources
  14. luac.out
  15. # luarocks build files
  16. *.src.rock
  17. *.zip
  18. *.tar.gz
  19. # Object files
  20. *.o
  21. *.os
  22. *.ko
  23. *.obj
  24. *.elf
  25. # Precompiled Headers
  26. *.gch
  27. *.pch
  28. # Libraries
  29. *.lib
  30. *.a
  31. *.la
  32. *.lo
  33. *.def
  34. *.exp
  35. # Shared objects (inc. Windows DLLs)
  36. *.dll
  37. *.so
  38. *.so.*
  39. *.dylib
  40. # Executables
  41. *.exe
  42. *.out
  43. *.app
  44. *.i*86
  45. *.x86_64
  46. *.hex
  47. ### macOS ###
  48. *.DS_Store
  49. .AppleDouble
  50. .LSOverride
  51. # Icon must end with two \r
  52. Icon
  53. # Thumbnails
  54. ._*
  55. # Files that might appear in the root of a volume
  56. .DocumentRevisions-V100
  57. .fseventsd
  58. .Spotlight-V100
  59. .TemporaryItems
  60. .Trashes
  61. .VolumeIcon.icns
  62. .com.apple.timemachine.donotpresent
  63. # Directories potentially created on remote AFP share
  64. .AppleDB
  65. .AppleDesktop
  66. Network Trash Folder
  67. Temporary Items
  68. .apdisk
  69. ### Windows ###
  70. # Windows thumbnail cache files
  71. Thumbs.db
  72. ehthumbs.db
  73. ehthumbs_vista.db
  74. # Folder config file
  75. Desktop.ini
  76. # Recycle Bin used on file shares
  77. $RECYCLE.BIN/
  78. # Windows Installer files
  79. *.cab
  80. *.msi
  81. *.msm
  82. *.msp
  83. # Windows shortcuts
  84. *.lnk
  85. # End of https://www.gitignore.io/api/lua,linux,macos,windows