Files
crewAI/.pre-commit-config.yaml
Greyson LaLonde 78a68c677c feat: merge latest changes from crewAI main into packages/crewai
- Merged upstream changes from crewAI main branch
- Resolved conflicts in pyproject.toml
- Fixed mypy import issue in qdrant factory
- Updated pre-commit mypy configuration for monorepo structure
2025-09-18 23:37:20 -04:00

22 lines
610 B
YAML

repos:
- repo: local
hooks:
- id: ruff
name: ruff
entry: uv run ruff check
language: system
types: [python]
files: ^(packages/crewai/src/|packages/tools/src/).*\.py$
- id: ruff-format
name: ruff-format
entry: uv run ruff format
language: system
types: [python]
files: ^(packages/crewai/src/|packages/tools/src/).*\.py$
- id: mypy
name: mypy
entry: uv run mypy
language: system
types: [python]
exclude: ^(packages/.*/tests/|packages/crewai/src/crewai/cli/templates/)