.gitignore 785 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. env/
  2. virtualenv/
  3. venv/
  4. node_modules/
  5. __pycache__
  6. **/__pycache__
  7. *.pyc
  8. .pipcache
  9. .benchmarks/
  10. .pytest_cache
  11. .mypy_cache
  12. .DS_Store
  13. .vscode/
  14. newrelic_agent.log
  15. /tags
  16. # PyCharm stuff we don't need to keep in our repo.
  17. .idea/codeStyles/
  18. .idea/codeStyleSettings.xml
  19. .idea/dataSources*
  20. .idea/dataSources/
  21. .idea/encodings.xml
  22. .idea/GitScope.xml
  23. .idea/inspectionProfiles/
  24. .idea/jsLibraryMappings.xml
  25. .idea/maple.iml
  26. .idea/markdown-navigator*
  27. .idea/misc.xml
  28. .idea/mypy.xml
  29. .idea/remote-mappings.xml
  30. .idea/shelf/
  31. .idea/tasks.xml
  32. .idea/workspace.xml
  33. .tags
  34. .tags1
  35. stellar.yaml
  36. # Special place for the home directory in the docker containers (see docker-compose.dev.yml).
  37. *.local*
  38. # Shell history and other local configuration can be kept here.
  39. .home
  40. # Configuration file for docker-compose
  41. .env