.gitignore 829 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. # Logs
  2. logs
  3. *.log
  4. # Node.js related
  5. node_modules/
  6. npm-debug.log*
  7. yarn-debug.log*
  8. yarn-error.log*
  9. # Dependency directories
  10. pids
  11. *.pid
  12. *.seed
  13. *.pid.lock
  14. # Dependency testing
  15. lib-cov
  16. # Compiled binary addons
  17. *.o
  18. *.lo
  19. *.la
  20. *.al
  21. # Output of `npm build`
  22. build/
  23. # Output of `node-gyp`
  24. build/Release
  25. # .lock-wscript
  26. .lock-wscript
  27. # Yarn Integrity file
  28. .yarn-integrity
  29. # dotenv environment variables file
  30. .env
  31. # npm package lock
  32. package-lock.json
  33. # macOS files
  34. .DS_Store
  35. # Windows thumbnail cache files
  36. Thumbs.db
  37. # Editor-specific files
  38. .vscode/
  39. .idea/
  40. *.suo
  41. *.ntvs*
  42. *.njsproj
  43. *.sln
  44. *.sw?
  45. # Sublime Text specific files
  46. *.sublime-workspace
  47. *.sublime-project
  48. # WebStorm workspace
  49. .idea/workspace.xml
  50. # JetBrains IDEs (PyCharm, PhpStorm, RubyMine, etc)
  51. .idea/
  52. # Test coverage directory used by tools like istanbul
  53. coverage/