You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.gitignore 624B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # These are some examples of commonly ignored file patterns.
  2. # You should customize this list as applicable to your project.
  3. # Learn more about .gitignore:
  4. # https://www.atlassian.com/git/tutorials/saving-changes/gitignore
  5. # Node artifact files
  6. node_modules/
  7. dist/
  8. # Compiled Java class files
  9. *.class
  10. # Compiled Python bytecode
  11. *.py[cod]
  12. # Log files
  13. *.log
  14. # Package files
  15. *.jar
  16. # Maven
  17. target/
  18. dist/
  19. # JetBrains IDE
  20. .idea/
  21. # Unit test reports
  22. TEST*.xml
  23. # Generated by MacOS
  24. .DS_Store
  25. # Generated by Windows
  26. Thumbs.db
  27. # Applications
  28. *.app
  29. *.exe
  30. *.war
  31. # Large media files
  32. *.mp4
  33. *.tiff
  34. *.avi
  35. *.flv
  36. *.mov
  37. *.wmv