mirror of
https://github.com/crewAIInc/crewAI.git
synced 2025-12-16 04:18:35 +00:00
26 lines
643 B
YAML
26 lines
643 B
YAML
repos:
|
|
- repo: local
|
|
hooks:
|
|
- id: ruff
|
|
name: ruff
|
|
entry: uv run ruff check
|
|
args: ["--config", "pyproject.toml", "."]
|
|
language: system
|
|
pass_filenames: false
|
|
types: [python]
|
|
- id: ruff-format
|
|
name: ruff-format
|
|
entry: uv run ruff format
|
|
args: ["--config", "pyproject.toml", "."]
|
|
language: system
|
|
pass_filenames: false
|
|
types: [python]
|
|
- id: mypy
|
|
name: mypy
|
|
entry: uv run mypy
|
|
args: ["--config-file", "pyproject.toml", "."]
|
|
language: system
|
|
pass_filenames: false
|
|
types: [python]
|
|
|