.gitignore 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. # ---> Eclipse
  2. *.pydevproject
  3. .metadata
  4. .gradle
  5. bin/
  6. tmp/
  7. *.tmp
  8. *.bak
  9. *.swp
  10. *~.nib
  11. local.properties
  12. .settings/
  13. .loadpath
  14. # Eclipse Core
  15. .project
  16. # External tool builders
  17. .externalToolBuilders/
  18. # Locally stored "Eclipse launch configurations"
  19. *.launch
  20. # CDT-specific
  21. .cproject
  22. # JDT-specific (Eclipse Java Development Tools)
  23. .classpath
  24. # Java annotation processor (APT)
  25. .factorypath
  26. # PDT-specific
  27. .buildpath
  28. # sbteclipse plugin
  29. .target
  30. # TeXlipse plugin
  31. .texlipse
  32. # ---> Java
  33. *.class
  34. # Mobile Tools for Java (J2ME)
  35. .mtj.tmp/
  36. # Package Files #
  37. *.jar
  38. *.war
  39. *.ear
  40. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  41. hs_err_pid*
  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. /target/
  64. .idea