.gitignore 730 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. # ---> C
  33. # Object files
  34. *.o
  35. *.ko
  36. *.obj
  37. *.elf
  38. # Precompiled Headers
  39. *.gch
  40. *.pch
  41. # Libraries
  42. *.lib
  43. *.a
  44. *.la
  45. *.lo
  46. # Shared objects (inc. Windows DLLs)
  47. *.dll
  48. *.so
  49. *.so.*
  50. *.dylib
  51. # Executables
  52. *.exe
  53. *.out
  54. *.app
  55. *.i*86
  56. *.x86_64
  57. *.hex
  58. # Debug files
  59. *.dSYM/