通用评论

.gitignore 593B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # misc
  2. .DS_Store
  3. npm-debug.log*
  4. .DS_STORE
  5. node_modules
  6. scripts/flow/*/.flowconfig
  7. *~
  8. *.pyc
  9. .grunt
  10. _SpecRunner.html
  11. __benchmarks__
  12. build/
  13. dist/
  14. remote-repo/
  15. coverage/
  16. flow-coverage/
  17. .module-cache
  18. fixtures/dom/public/react-dom.js
  19. fixtures/dom/public/react.js
  20. test/the-files-to-test.generated.js
  21. *.log*
  22. chrome-user-data
  23. *.sublime-project
  24. *.sublime-workspace
  25. .idea
  26. *.iml
  27. .vscode
  28. *.swp
  29. *.swo
  30. package-lock.json
  31. yarn.lock
  32. # testing
  33. /coverage
  34. # production
  35. /build
  36. # misc
  37. .DS_Store
  38. .env.local
  39. .env.development.local
  40. .env.test.local
  41. .env.production.local
  42. npm-debug.log*
  43. yarn-debug.log*
  44. yarn-error.log*