Guest User

Untitled

a guest
Oct 19th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. # -----------------------------------------------------------------
  2. # ver 1.1.0
  3. #
  4. # Change Log:
  5. # 20160721 - First version
  6. # 20171018 - error_log added
  7. # -----------------------------------------------------------------
  8.  
  9. # ignore all files starting with . or ~
  10. .*
  11. ~*
  12. # backup
  13. *.bkp
  14. *_bkp
  15. *.bak
  16.  
  17. # ignore OS generated files
  18. .DS_Store
  19. .DS_Store?
  20. ._*
  21. .Spotlight-V100
  22. .Trashes
  23. ehthumbs.db
  24. Thumbs.db
  25. desktop.ini
  26.  
  27. # Map files
  28. *.css.map
  29.  
  30. # ignore node/bower dependency directories
  31. dist/
  32. bower_components/
  33. node_modules/
  34. .sass-cache/
  35.  
  36. # ignore Editor files
  37. *.sublime-project
  38. *.sublime-workspace
  39. *.komodoproject
  40. *.idea
  41. dwsync.xml
  42. _notes/
  43.  
  44. # ignore log files and databases
  45. *.log
  46. *.sql
  47. *.sqlite
  48. error_log
  49. **/*.log*
  50.  
  51. # ignore compiled files
  52. *.com
  53. *.class
  54. *.dll
  55. *.exe
  56. *.o
  57. *.so
  58.  
  59. # ignore packaged files
  60. *.7z
  61. *.dmg
  62. *.gz
  63. *.iso
  64. *.jar
  65. *.rar
  66. *.tar
  67. *.zip
  68.  
  69. # Wordpress
  70. wp-config.php
  71. wp-content/advanced-cache.php
  72. wp-content/backup-db/
  73. wp-content/backups/
  74. wp-content/blogs.dir/
  75. wp-content/cache/
  76. wp-content/upgrade/
  77. wp-content/uploads/
  78. wp-content/wp-cache-config.php
  79. wp-content/plugins/hello.php
  80. /.htaccess
  81. /license.txt
  82. /readme.html
  83. /sitemap.xml
  84. /sitemap.xml.gz
  85.  
  86. # -------------------------
  87. # BEGIN Whitelisted Files
  88. # -------------------------
  89.  
  90. # track these files, if they exist
  91. !.gitignore
  92. !.editorconfig
  93. !README.md
  94. !CHANGELOG.md
  95. !composer.json
  96. !package.json
  97. !gulp.js
  98. !grunt.js
Add Comment
Please, Sign In to add comment