Guest User

Untitled

a guest
Apr 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. # Ignore ---------------------------------------------------------------------------------------------------------------
  2.  
  3. # Local
  4.  
  5. #*
  6. .#*
  7. ._*
  8. .~*
  9.  
  10. # Logs
  11.  
  12. *.log
  13.  
  14. # Backups
  15.  
  16. *~
  17. *.bak
  18.  
  19. # Patches
  20.  
  21. *.rej
  22. *.orig
  23. *.patch
  24. *.diff
  25.  
  26. # Vagrant
  27.  
  28. .vagrant/
  29.  
  30. # TypeScript
  31.  
  32. typings/
  33.  
  34. # IntelliJ
  35.  
  36. .idea/
  37.  
  38. # Sublime
  39.  
  40. *.sublime-project
  41. *.sublime-workspace
  42.  
  43. # Netbeans
  44.  
  45. *.nbproject
  46.  
  47. # VS Code
  48.  
  49. *.code-workspace
  50.  
  51. # Vendor
  52.  
  53. vendor/
  54.  
  55. # NodeJS
  56.  
  57. node_modules/
  58.  
  59. # JSPM
  60.  
  61. jspm_packages/
  62.  
  63. # Bower
  64.  
  65. bower_components/
  66.  
  67. # SASS
  68.  
  69. .sass-cache/
  70.  
  71. # Elastic Beanstalk
  72.  
  73. .elasticbeanstalk/
  74.  
  75. # CTAGs
  76.  
  77. *.ctags
  78. *.tags
  79.  
  80. # VCS
  81.  
  82. .git/
  83.  
  84. .svn/
  85. _svn/
  86.  
  87. CVS/
  88. .cvsignore
  89.  
  90. .bzr/
  91. .bzrignore
  92.  
  93. .hg/
  94. .hgignore
  95.  
  96. SCCS/
  97. RCS/
  98.  
  99. # PC Files
  100.  
  101. $RECYCLE.BIN/
  102. Desktop.ini
  103. Thumbs.db
  104. ehthumbs.db
  105.  
  106. # Mac Files
  107.  
  108. .AppleDB
  109. .AppleDouble
  110. .AppleDesktop
  111. .com.apple.timemachine.donotpresent
  112. Network Trash Folder
  113. Temporary Items
  114. .LSOverride
  115. .Spotlight-V100
  116. .VolumeIcon.icns
  117. .TemporaryItems
  118. .fseventsd
  119. .DS_Store
  120. .Trashes
  121. .apdisk
  122. Icon?
  123. !Icons
  124. ._*
  125.  
  126. # ----------------------------------------------------------------------------------------------------------------------
  127.  
  128. # <custom>
  129. # Put your rules in custom comment markers.
  130. # </custom>
Add Comment
Please, Sign In to add comment