.gitignore 577 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # Dependencies
  2. node_modules/
  3. npm-debug.log*
  4. yarn-debug.log*
  5. yarn-error.log*
  6. taskmaster-api/node_modules/
  7. # Python
  8. __pycache__/
  9. *.py[cod]
  10. *.pyo
  11. *.pyd
  12. .Python
  13. *.so
  14. .pytest_cache/
  15. .coverage
  16. htmlcov/
  17. .tox/
  18. .cache
  19. nosetests.xml
  20. coverage.xml
  21. *.cover
  22. *.log
  23. # Environment variables
  24. .env
  25. .env.local
  26. .env.development.local
  27. .env.test.local
  28. .env.production.local
  29. # IDE
  30. .vscode/settings.json
  31. .idea/
  32. *.swp
  33. *.swo
  34. *~
  35. # OS
  36. .DS_Store
  37. .DS_Store?
  38. ._*
  39. .Spotlight-V100
  40. .Trashes
  41. ehthumbs.db
  42. Thumbs.db
  43. # Build outputs
  44. dist/
  45. build/
  46. *.tgz
  47. *.tar.gz
  48. # Logs
  49. logs
  50. *.log
  51. # Temporary files
  52. *.tmp
  53. *.temp