.gitignore 405 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. # 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. .vscode
  26. # Sekrit files
  27. private.properties
  28. # Files from bad operating systems :^)
  29. Thumbs.db
  30. .DS_Store