.gitignore 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. *~
  29. # temporary files which can be created if a process still has a handle open of a deleted file
  30. .fuse_hidden*
  31. # KDE directory preferences
  32. .directory
  33. # Linux trash folder which might appear on any partition or disk
  34. .Trash-*
  35. # .nfs files are created when an open file is removed but is still being accessed
  36. .nfs*
  37. # General
  38. .DS_Store
  39. .AppleDouble
  40. .LSOverride
  41. # Icon must end with two \r
  42. Icon
  43. # Thumbnails
  44. ._*
  45. # Files that might appear in the root of a volume
  46. .DocumentRevisions-V100
  47. .fseventsd
  48. .Spotlight-V100
  49. .TemporaryItems
  50. .Trashes
  51. .VolumeIcon.icns
  52. .com.apple.timemachine.donotpresent
  53. # Directories potentially created on remote AFP share
  54. .AppleDB
  55. .AppleDesktop
  56. Network Trash Folder
  57. Temporary Items
  58. .apdisk
  59. # Windows thumbnail cache files
  60. Thumbs.db
  61. Thumbs.db:encryptable
  62. ehthumbs.db
  63. ehthumbs_vista.db
  64. # Dump file
  65. *.stackdump
  66. # Folder config file
  67. [Dd]esktop.ini
  68. # Recycle Bin used on file shares
  69. $RECYCLE.BIN/
  70. # Windows Installer files
  71. *.cab
  72. *.msi
  73. *.msix
  74. *.msm
  75. *.msp
  76. # Windows shortcuts
  77. *.lnk
  78. .gradle
  79. build/
  80. # Ignore Gradle GUI config
  81. gradle-app.setting
  82. # Cache of project
  83. .gradletasknamecache
  84. **/build/
  85. # Common working directory
  86. run/
  87. runs/
  88. # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
  89. !gradle-wrapper.jar