.gitignore 500 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # Windows
  2. Thumbs.db
  3. ehthumbs.db
  4. Desktop.ini
  5. $RECYCLE.BIN/
  6. *.cab
  7. *.msi
  8. *.msm
  9. *.msp
  10. *.lnk
  11. # Backup files
  12. *.reg
  13. *.bak
  14. *.backup
  15. *_backup_*
  16. # Temporary files
  17. *.tmp
  18. *.temp
  19. ~$*
  20. *.log
  21. # PowerShell
  22. *.ps1xml
  23. # IDE files
  24. .vscode/
  25. .vs/
  26. *.suo
  27. *.user
  28. *.userprefs
  29. *.sln.docstates
  30. # OS generated files
  31. .DS_Store
  32. .DS_Store?
  33. ._*
  34. .Spotlight-V100
  35. .Trashes
  36. Icon?
  37. # Test results
  38. TestResults/
  39. *.trx
  40. *.coverage
  41. *.coveragexml
  42. # Documentation artifacts
  43. *.pdf
  44. *.docx
  45. *.doc
  46. # Personal notes
  47. notes.txt
  48. todo.txt
  49. *.personal