Guest User

Untitled

a guest
Dec 14th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. .gitignore
  2.  
  3. # Packages
  4. *.7z
  5. *.dmg
  6. *.gz
  7. *.iso
  8. *.jar
  9. *.nar
  10. *.rar
  11. *.tar
  12. *.tar.gz
  13. *.tgz
  14. *.war
  15. *.zip
  16.  
  17. # Various files
  18. *.bak
  19. *.gho
  20. *.ori
  21. *.orig
  22. *.tmp
  23.  
  24. # Various directories
  25. backups/
  26. received/
  27. work/
  28. work-graphics/
  29. parts/
  30. grabs
  31. build/
  32. .build/
  33. dist/
  34. DerivedData/
  35. bower_components/
  36.  
  37. # Yarn
  38. /yarn-error.log*
  39. yarn-debug.log*
  40. .yarn-integrity
  41.  
  42. # Logs and DB
  43. *.log
  44. *.sql
  45. *.sqlite
  46. .dynamodb/
  47. db.sqlite3
  48.  
  49. # SASS and CSS
  50. .sass-cache/
  51. *.css.map
  52. *.sass.map
  53. *.scss.map
  54.  
  55. # HTML
  56. *.html
  57. !foo.html
  58. !test.html
  59.  
  60. # Javascript
  61. *.min.js
  62. *-min.js
  63.  
  64. # Node
  65. npm-debug.log*
  66. .grunt
  67. bower_components
  68. build/Release
  69. node_modules/
  70. jspm_packages/
  71. typings/
  72. .eslintcache
  73.  
  74. # NetBeans
  75. **/nbproject/private/
  76. nbbuild/
  77. nbdist/
  78. .nb-gradle/
  79.  
  80. # Sublime Text
  81. *.tmlanguage.cache
  82. *.tmPreferences.cache
  83. *.stTheme.cache
  84. *.sublime-project
  85. *.sublime-workspace
  86. sftp-config.json
  87. GitHub.sublime-settings
  88.  
  89. # VisuaStudioCode
  90. .vscode/*
  91. !.vscode/settings.json
  92. !.vscode/tasks.json
  93. !.vscode/launch.json
  94. !.vscode/extensions.json
  95.  
  96. # Xcode
  97. xcuserdata/
  98. *.xcscmblueprint
  99. *.xccheckout
  100.  
  101. # fastlane
  102. fastlane/report.xml
  103. fastlane/Preview.html
  104. fastlane/screenshots/**/*.png
  105. fastlane/test_output
  106.  
  107. # Carthage
  108. Carthage/Build
  109.  
  110. # macOS
  111. .DS_Store
  112. .DS_Store?
  113. .AppleDouble
  114. .LSOverride
  115.  
  116. # BBEdit
  117. *.bbprojectd
  118. *.bbprojectd/*
  119. *.bbprojectsettings
  120. *.bbprojectdata
  121. *Scratchpad.txt
  122. *.worksheet
  123.  
  124. # CodeKit
  125. *.codekit
  126. *.codekit3
  127. **/.sass-cache/*
  128.  
  129. # Lua
  130. luac.out
  131.  
  132. # Rails
  133. *.rbc
  134. capybara-*.html
  135. .rspec
  136. /db/*.sqlite3
  137. /db/*.sqlite3-journal
  138. /public/system
  139. /coverage/
  140. /spec/tmp
  141. rerun.txt
  142. config/initializers/secret_token.rb
  143. config/master.key
  144.  
  145. # Python
  146. __pycache__/
  147. *.py[cod]
  148. *$py.class
  149. .Python
  150. pip-log.txt
  151. pip-delete-this-directory.txt
  152. .pytest_cache/
  153.  
  154. // Drupal
  155. /sites/*/*settings*.php
  156. /sites/*/*services*.yml
  157. /sites/*/files
  158. /sites/*/public
  159. /sites/*/private
  160. /sites/*/files-public
  161. /sites/*/files-private
  162. /sites/*/translations
  163. /sites/*/tmp
  164. /sites/*/cache
  165.  
  166. # WordPress
  167. wp-config.php
  168. wp-content/advanced-cache.php
  169. wp-content/backup-db/
  170. wp-content/backups/
  171. wp-content/blogs.dir/
  172. wp-content/cache/
  173. wp-content/upgrade/
  174. wp-content/uploads/
  175. wp-content/mu-plugins/
  176. wp-content/wp-cache-config.php
  177. wp-content/plugins/hello.php
  178.  
  179. /.htaccess
  180. /license.txt
  181. /readme.html
  182. /sitemap.xml
  183. /sitemap.xml.gz
Add Comment
Please, Sign In to add comment