gitignore_global 621 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # Compiled source #
  2. ###################
  3. *.com
  4. *.class
  5. *.dll
  6. *.exe
  7. *.o
  8. *.so
  9. # Packages #
  10. ############
  11. # it's better to unpack these files and commit the raw source
  12. # git has its own built in compression methods
  13. *.7z
  14. *.dmg
  15. *.gz
  16. *.iso
  17. *.jar
  18. *.rar
  19. *.tar
  20. *.zip
  21. # Logs and databases #
  22. ######################
  23. *.log
  24. #*.sql
  25. *.sqlite
  26. # OS generated files #
  27. ######################
  28. .DS_Store
  29. .DS_Store?
  30. ._*
  31. .Spotlight-V100
  32. .Trashes
  33. ehthumbs.db
  34. Thumbs.db
  35. .ipynb_checkpoints/
  36. # Development remnants #
  37. ########################
  38. env/
  39. tags
  40. __pycache__/
  41. .clang
  42. toolchain.cmake
  43. livepreview/
  44. *.env
  45. .python-version
  46. .metals/
  47. .idea/
  48. .vscode