.gitignore 403 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. syntax: glob
  2. # compiled files:
  3. *.o
  4. *.so
  5. *.a
  6. # temporary files:
  7. build
  8. *.bak
  9. *.swp
  10. *~
  11. .*~
  12. *.old
  13. tmp*
  14. temp*
  15. .#*
  16. \#*
  17. # tex files:
  18. *.log
  19. *.dvi
  20. *.aux
  21. *.blg
  22. *.idx
  23. *.nav
  24. *.out
  25. *.toc
  26. *.snm
  27. *.vrb
  28. # vscode files
  29. .vscode/settings.json
  30. # eclipse files:
  31. *.cproject
  32. *.project
  33. # misc:
  34. .DS_Store
  35. .idea
  36. __pycache__
  37. _minted-*
  38. # doconce:
  39. .*_html_file_collection
  40. .*.exerinfo
  41. .*.copyright
  42. # notebook checkepoints
  43. *checkpoints