.gitignore 767 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ############################################
  2. ## Generic System Ignores
  3. syntax: glob
  4. !.gitignore
  5. # build directories and files
  6. #hg syntax
  7. target/**.*
  8. #git syntax
  9. target/
  10. dist/**.*
  11. **/build/*
  12. build/*
  13. *.pyc
  14. # Maven
  15. release.properties
  16. #Eclipse
  17. .settings/*.**
  18. .classpath
  19. .project
  20. # Netbeans
  21. nb-configuration.xml
  22. nbactions.xml
  23. # Backup files left behind by the Emacs editor.
  24. *~
  25. # Lock files used by the Emacs editor.
  26. .\#*
  27. # Temporary files used by TestMate
  28. ._*
  29. # XCode user data
  30. **.pbxuser
  31. **.mode?v?
  32. **.perspectivev?
  33. # documentation
  34. **.docset/*
  35. # for those crazies using svn and hg at the same time
  36. *.svn*
  37. # Random OS stuff
  38. .DS_Store
  39. Thumbs.db
  40. # temporary folders
  41. syntax: regexp
  42. .*/te?mp/.*
  43. # Temporary files used by the vim editor.
  44. .*.swp
  45. /nbproject/private/
  46. /nbproject/