.gitignore 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # C extensions
  6. *.so
  7. # Distribution / packaging
  8. .Python
  9. build/
  10. develop-eggs/
  11. dist/
  12. downloads/
  13. eggs/
  14. .eggs/
  15. lib/
  16. lib64/
  17. parts/
  18. sdist/
  19. var/
  20. wheels/
  21. pip-wheel-metadata/
  22. share/python-wheels/
  23. *.egg-info/
  24. .installed.cfg
  25. *.egg
  26. MANIFEST
  27. # PyInstaller
  28. # Usually these files are written by a python script from a template
  29. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  30. *.manifest
  31. *.spec
  32. # Installer logs
  33. pip-log.txt
  34. pip-delete-this-directory.txt
  35. # Unit test / coverage reports
  36. htmlcov/
  37. .tox/
  38. .nox/
  39. .coverage
  40. .coverage.*
  41. .cache
  42. nosetests.xml
  43. coverage.xml
  44. *.cover
  45. *.py,cover
  46. .hypothesis/
  47. .pytest_cache/
  48. # Translations
  49. *.mo
  50. *.pot
  51. # Django stuff:
  52. *.log
  53. local_settings.py
  54. db.sqlite3
  55. db.sqlite3-journal
  56. # Flask stuff:
  57. instance/
  58. .webassets-cache
  59. # Scrapy stuff:
  60. .scrapy
  61. # Sphinx documentation
  62. docs/_build/
  63. # PyBuilder
  64. target/
  65. # Jupyter Notebook
  66. .ipynb_checkpoints
  67. # IPython
  68. profile_default/
  69. ipython_config.py
  70. # pyenv
  71. .python-version
  72. # pipenv
  73. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  74. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  75. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  76. # install all needed dependencies.
  77. #Pipfile.lock
  78. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  79. __pypackages__/
  80. # Celery stuff
  81. celerybeat-schedule
  82. celerybeat.pid
  83. # SageMath parsed files
  84. *.sage.py
  85. # Environments
  86. .env
  87. .venv
  88. env/
  89. venv/
  90. ENV/
  91. env.bak/
  92. venv.bak/
  93. # Spyder project settings
  94. .spyderproject
  95. .spyproject
  96. # Rope project settings
  97. .ropeproject
  98. # mkdocs documentation
  99. /site
  100. # mypy
  101. .mypy_cache/
  102. .dmypy.json
  103. dmypy.json
  104. # Pyre type checker
  105. .pyre/
  106. # Mac files
  107. *.DS_Store
  108. # Custom
  109. keys*.cfg
  110. # iPython Notebooks
  111. *.ipynb
  112. # Evaluation folders
  113. results/
  114. testbed/
  115. temp/
  116. # Ignore all YAML files in data/
  117. data/*/ic-*
  118. data/*/single-issues
  119. # Fine tuning data
  120. fine_tune/*.ipynb
  121. fine_tune/subtasks/*.jsonl
  122. temp*.jsonl
  123. # Inspector
  124. inspector/*.json
  125. # Ignore all files in the private folder
  126. private/
  127. ### Website
  128. # dependencies
  129. website/frontend/node_modules
  130. website/frontend/package-lock.json
  131. website/frontend/.pnp
  132. *.pnp.js
  133. # testing
  134. website/frontend/coverage
  135. # production
  136. website/frontend/build
  137. # misc
  138. *.env.local
  139. *.env.development.local
  140. *.env.test.local
  141. *.env.production.local
  142. .api_key
  143. *npm-debug.log*
  144. *yarn-debug.log*
  145. *yarn-error.log*
  146. # demo yamls (for editing)
  147. *.demo.yaml
  148. # trajectory files
  149. trajectories/**
  150. !trajectories/demonstrations/**
  151. data/**
  152. .vscode/**
  153. # PyCharm
  154. .idea/
  155. # Disasm / Decomp output
  156. *.decomp.json
  157. *.disas.json