.gitignore 286 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # Compiled class file
  2. *.class
  3. # VS Code
  4. .vscode
  5. # Eclipse
  6. .project
  7. .classpath
  8. .settings/
  9. # Intellij
  10. *.ipr
  11. *.iml
  12. *.iws
  13. .idea/
  14. # Maven
  15. target/
  16. # Gradle
  17. build
  18. .gradle
  19. # Log file
  20. *.log
  21. log/
  22. # out
  23. **/out/
  24. # Mac
  25. .DS_Store
  26. # others
  27. *.jar
  28. *.war
  29. *.zip
  30. *.tar
  31. *.tar.gz
  32. *.pid
  33. *.orig
  34. temp/