.gitignore.ft 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. # User-specific stuff
  2. .idea/
  3. *.iml
  4. *.ipr
  5. *.iws
  6. # IntelliJ
  7. out/
  8. # mpeltonen/sbt-idea plugin
  9. .idea_modules/
  10. # JIRA plugin
  11. atlassian-ide-plugin.xml
  12. # Compiled class file
  13. *.class
  14. # Log file
  15. *.log
  16. # BlueJ files
  17. *.ctxt
  18. # Package Files #
  19. *.jar
  20. *.war
  21. *.nar
  22. *.ear
  23. *.zip
  24. *.tar.gz
  25. *.rar
  26. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  27. hs_err_pid*
  28. ### Linux ###
  29. *~
  30. # temporary files which can be created if a process still has a handle open of a deleted file
  31. .fuse_hidden*
  32. # KDE directory preferences
  33. .directory
  34. # Linux trash folder which might appear on any partition or disk
  35. .Trash-*
  36. # .nfs files are created when an open file is removed but is still being accessed
  37. .nfs*
  38. ### macOS ###
  39. # General
  40. .DS_Store
  41. .AppleDouble
  42. .LSOverride
  43. # Icon must end with two \r
  44. Icon
  45. # Thumbnails
  46. ._*
  47. # Files that might appear in the root of a volume
  48. .DocumentRevisions-V100
  49. .fseventsd
  50. .Spotlight-V100
  51. .TemporaryItems
  52. .Trashes
  53. .VolumeIcon.icns
  54. .com.apple.timemachine.donotpresent
  55. # Directories potentially created on remote AFP share
  56. .AppleDB
  57. .AppleDesktop
  58. Network Trash Folder
  59. Temporary Items
  60. .apdisk
  61. ### Windows ###
  62. # Windows thumbnail cache files
  63. Thumbs.db
  64. Thumbs.db:encryptable
  65. ehthumbs.db
  66. ehthumbs_vista.db
  67. # Dump file
  68. *.stackdump
  69. # Folder config file
  70. [Dd]esktop.ini
  71. # Recycle Bin used on file shares
  72. $RECYCLE.BIN/
  73. # Windows Installer files
  74. *.cab
  75. *.msi
  76. *.msix
  77. *.msm
  78. *.msp
  79. # Windows shortcuts
  80. *.lnk
  81. ### Gradle ###
  82. .gradle
  83. build/
  84. # Ignore Gradle GUI config
  85. gradle-app.setting
  86. # Cache of project
  87. .gradletasknamecache
  88. ### Gradle Patch ###
  89. **/build/
  90. # Common working directory
  91. run/
  92. # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
  93. !gradle-wrapper.jar