mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-09 16:18:30 +00:00
- Migrate crewai-tools as standalone package in lib/tools - Configure UV workspace for monorepo structure - Move assets to repository root - Clean up duplicate README files - Focus pre-commit hooks on lib/crewai/src only
23 lines
529 B
YAML
23 lines
529 B
YAML
repos:
|
|
- repo: local
|
|
hooks:
|
|
- id: ruff
|
|
name: ruff
|
|
entry: uv run ruff check
|
|
language: system
|
|
types: [python]
|
|
files: ^lib/crewai/src/
|
|
- id: ruff-format
|
|
name: ruff-format
|
|
entry: uv run ruff format
|
|
language: system
|
|
types: [python]
|
|
files: ^lib/crewai/src/
|
|
- id: mypy
|
|
name: mypy
|
|
entry: uv run mypy
|
|
language: system
|
|
types: [python]
|
|
files: ^lib/crewai/src/
|
|
exclude: ^lib/crewai/tests/
|