Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. # Folder view configuration files
  2. ###################
  3. .DS_Store
  4. .DS_Store?
  5. Desktop.ini
  6.  
  7. # Thumbnail cache files
  8. ###################
  9. ._*
  10. Thumbs.db
  11.  
  12. # Files that might appear on external disks
  13. ###################
  14. .Spotlight-V100
  15. .Trashes
  16.  
  17. # Compiled Python files
  18. ###################
  19. *.pyc
  20.  
  21. # Compiled C++ files
  22. ###################
  23. *.out
  24.  
  25. # Application specific files
  26. ###################
  27. venv
  28. node_modules
  29. .sass-cache
  30.  
  31. # Compiled source #
  32. ###################
  33. *.com
  34. *.class
  35. *.dll
  36. *.exe
  37. *.o
  38. *.so
  39.  
  40. # Packages #
  41. ############
  42. # it's better to unpack these files and commit the raw source
  43. # git has its own built in compression methods
  44. *.7z
  45. *.dmg
  46. *.gz
  47. *.iso
  48. *.jar
  49. *.rar
  50. *.tar
  51. *.zip
  52.  
  53. # Logs and databases #
  54. ######################
  55. *.log
  56. *.sql
  57. *.sqlite
  58.  
  59. # OS generated files #
  60. ######################
  61. ehthumbs.db
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement