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/)