.gitignore 732 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. # External tool builders
  16. .externalToolBuilders/
  17. # Locally stored "Eclipse launch configurations"
  18. *.launch
  19. # CDT-specific
  20. # JDT-specific (Eclipse Java Development Tools)
  21. .classpath
  22. # Java annotation processor (APT)
  23. .factorypath
  24. # PDT-specific
  25. .buildpath
  26. # sbteclipse plugin
  27. .target
  28. # TeXlipse plugin
  29. .texlipse
  30. # ---> C
  31. # Object files
  32. *.o
  33. *.ko
  34. *.obj
  35. *.elf
  36. # Precompiled Headers
  37. *.gch
  38. *.pch
  39. # Libraries
  40. *.lib
  41. *.a
  42. *.la
  43. *.lo
  44. *.d
  45. *.o
  46. *.cyclo
  47. *.su
  48. # Shared objects (inc. Windows DLLs)
  49. *.dll
  50. *.so
  51. *.so.*
  52. *.dylib
  53. # Executables
  54. *.exe
  55. *.out
  56. *.app
  57. *.i*86
  58. *.x86_64
  59. *.hex
  60. # Debug files
  61. *.dSYM/