Guest User

Untitled

a guest
Jun 14th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. ## .gitignore file Citation following Github accounts
  2. ## omermindivanli, octocat, facebook and
  3. ###################
  4.  
  5. ## JavaScript Stuffs
  6. node_modules
  7. dist
  8. build
  9. /.eslintcache
  10. coverage
  11. flow-coverage/
  12. .module-cache
  13. remote-repo/
  14. scripts/flow/*/.flowconfig
  15.  
  16. ## Vim
  17. *.swp
  18. *.swo
  19.  
  20. ## Sublime
  21. *.sublime-project
  22. *.sublime-workspace
  23.  
  24. ## WebStorm
  25. .idea
  26.  
  27. ## VsCode
  28. .vscode
  29.  
  30. ## Google
  31. chrome-user-data
  32.  
  33. ## Lerna
  34. /packages/*/node_modules
  35.  
  36. ## locks
  37. package-lock.json
  38. yarn.lock
  39.  
  40. # Logs and databases #
  41. ######################
  42. *.log
  43. *.sql
  44. *.sqlite
  45.  
  46. # OS generated files #
  47. ######################
  48. .DS_Store
  49. .DS_Store?
  50. ._*
  51. .Spotlight-V100
  52. .Trashes
  53. ehthumbs.db
  54. Thumbs.db
  55.  
  56. # Compiled source #
  57. ###################
  58. *.com
  59. *.class
  60. *.dll
  61. *.exe
  62. *.o
  63. *.so
  64.  
  65. # Packages #
  66. ############
  67. # it's better to unpack these files and commit the raw source
  68. # git has its own built in compression methods
  69. *.7z
  70. *.dmg
  71. *.gz
  72. *.iso
  73. *.jar
  74. *.rar
  75. *.tar
  76. *.zip
Add Comment
Please, Sign In to add comment