.gitignore 397 B

1234567891011121314151617181920212223242526272829303132
  1. # Compiled nonsense that does not belong in *source* control
  2. */build
  3. /build
  4. /bin
  5. */bin
  6. /.gradle
  7. */.gradle
  8. /minecraft
  9. */minecraft
  10. /out
  11. */run
  12. */out
  13. /run
  14. /classes
  15. # IDE nonsense that could go in source control but really shouldn't
  16. .classpath
  17. .project
  18. .metadata
  19. .settings
  20. *.launch
  21. *.iml
  22. .idea
  23. *.ipr
  24. *.iws
  25. # Sekrit files
  26. private.properties
  27. # Files from bad operating systems :^)
  28. Thumbs.db
  29. .DS_Store