.gitignore 354 B

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