.gitignore 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. # Compiled source #
  2. ###################
  3. *.com
  4. *.class
  5. *.dll
  6. *.exe
  7. *.o
  8. *.so
  9. # Packages #
  10. ############
  11. # it's better to unpack these files and commit the raw source
  12. # git has its own built in compression methods
  13. *.7z
  14. *.dmg
  15. *.gz
  16. *.iso
  17. *.jar
  18. *.rar
  19. *.tar
  20. *.zip
  21. # Logs and databases #
  22. ######################
  23. *.log
  24. *.sql
  25. *.sqlite
  26. # OS generated files #
  27. ######################
  28. .DS_Store
  29. .DS_Store?
  30. ._*
  31. .Spotlight-V100
  32. .Trashes
  33. ehthumbs.db
  34. Thumbs.db
  35. # Logs
  36. logs
  37. *.log
  38. npm-debug.log*
  39. yarn-debug.log*
  40. yarn-error.log*
  41. # Runtime data
  42. pids
  43. *.pid
  44. *.seed
  45. *.pid.lock
  46. # Directory for instrumented libs generated by jscoverage/JSCover
  47. lib-cov
  48. # Coverage directory used by tools like istanbul
  49. coverage
  50. # nyc test coverage
  51. .nyc_output
  52. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  53. .grunt
  54. # Bower dependency directory (https://bower.io/)
  55. bower_components
  56. # node-waf configuration
  57. .lock-wscript
  58. # Compiled binary addons (https://nodejs.org/api/addons.html)
  59. build/Release
  60. # Dependency directories
  61. node_modules/
  62. jspm_packages/
  63. # Typescript v1 declaration files
  64. typings/
  65. # Optional npm cache directory
  66. .npm
  67. # Optional eslint cache
  68. .eslintcache
  69. # Optional REPL history
  70. .node_repl_history
  71. # Output of 'npm pack'
  72. *.tgz
  73. # Yarn Integrity file
  74. .yarn-integrity
  75. # dotenv environment variables file
  76. .env