.gitignore 1016 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. # ---> Node
  33. # Logs
  34. logs
  35. *.log
  36. npm-debug.log*
  37. # Runtime data
  38. pids
  39. *.pid
  40. *.seed
  41. # Directory for instrumented libs generated by jscoverage/JSCover
  42. lib-cov
  43. # Coverage directory used by tools like istanbul
  44. coverage
  45. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  46. .grunt
  47. # node-waf configuration
  48. .lock-wscript
  49. # Compiled binary addons (http://nodejs.org/api/addons.html)
  50. build/Release
  51. # Dependency directory
  52. # https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
  53. node_modules