.pre-commit-config.yaml 548 B

1234567891011121314151617
  1. repos:
  2. - repo: https://github.com/astral-sh/ruff-pre-commit
  3. rev: v0.3.3
  4. hooks:
  5. - id: ruff
  6. entry: ruff check --config dev_config/python/ruff.toml opendevin/ agenthub/
  7. always_run: true
  8. pass_filenames: false
  9. - repo: https://github.com/pre-commit/mirrors-mypy
  10. rev: v1.9.0
  11. hooks:
  12. - id: mypy
  13. additional_dependencies: [types-requests, types-setuptools]
  14. entry: mypy --config-file dev_config/python/mypy.ini opendevin/ agenthub/
  15. always_run: true
  16. pass_filenames: false