.gitignore 677 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. *.csv
  2. !redirects.csv
  3. .env
  4. _build/
  5. env/
  6. __pycache__
  7. *.pyc
  8. *~
  9. .directory
  10. .vs/
  11. .vscode/
  12. *.mo
  13. # Vim temp files
  14. *.swo
  15. *.swp
  16. # Geany/geany-plugins files
  17. *.geany
  18. .geanyprj
  19. # Finder (macOS) makes these automatically.
  20. .DS_Store
  21. __MACOSX
  22. # Windows image file caches
  23. [Tt]humbs.db
  24. [Tt]humbs.db:encryptable
  25. ehthumbs.db
  26. ehthumbs_vista.db
  27. # Windows shortcuts
  28. *.lnk
  29. # Windows folder config file
  30. [Dd]esktop.ini
  31. # Windows Recycle Bin used on file shares
  32. $RECYCLE.BIN/
  33. logo.h
  34. *.autosave
  35. # Output of list-unused-images.sh tool
  36. tmp-unused-images
  37. tmp-unused-images-history
  38. # User created Python virtual environement as described in the docs
  39. godot-docs-venv/
  40. # Jetbrains IDE files
  41. /.idea/