Без опису

.pre-commit-config.yaml 674B

12345678910111213141516171819202122232425262728
  1. repos:
  2. - repo: https://github.com/astral-sh/ruff-pre-commit
  3. rev: v0.6.0
  4. hooks:
  5. - id: ruff
  6. args: [--fix]
  7. - id: ruff-format
  8. - repo: https://github.com/pre-commit/mirrors-mypy
  9. rev: v1.11.0
  10. hooks:
  11. - id: mypy
  12. additional_dependencies:
  13. - langgraph
  14. - langchain-core
  15. - pydantic
  16. - repo: https://github.com/pre-commit/pre-commit-hooks
  17. rev: v4.6.0
  18. hooks:
  19. - id: trailing-whitespace
  20. - id: end-of-file-fixer
  21. - id: check-yaml
  22. - id: check-toml
  23. - id: check-added-large-files
  24. args: [--maxkb=500]
  25. - id: no-commit-to-branch
  26. args: [--branch, main]

Powered by TurnKey Linux.