.gitignore 403 B

123456789101112131415161718192021222324252627282930313233
  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. logs/
  16. # IDE nonsense that could go in source control but really shouldn't
  17. .classpath
  18. .project
  19. .metadata
  20. .settings
  21. *.launch
  22. *.iml
  23. .idea
  24. *.ipr
  25. *.iws
  26. # Sekrit files
  27. private.properties
  28. # Files from bad operating systems :^)
  29. Thumbs.db
  30. .DS_Store