forked from phoenix/litellm-mirror
25 lines
No EOL
738 B
YAML
25 lines
No EOL
738 B
YAML
repos:
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
# Ruff version.
|
|
rev: v0.4.8
|
|
hooks:
|
|
# Run the linter.
|
|
- id: ruff
|
|
exclude: ^litellm/tests/|^litellm/proxy/proxy_cli.py|^litellm/proxy/tests/
|
|
# Run the formatter.
|
|
- id: ruff-format
|
|
exclude: ^litellm/tests/|^litellm/proxy/proxy_cli.py|^litellm/proxy/tests/
|
|
- repo: local
|
|
hooks:
|
|
- id: check-files-match
|
|
name: Check if files match
|
|
entry: python3 ci_cd/check_files_match.py
|
|
language: system
|
|
- repo: local
|
|
hooks:
|
|
- id: mypy
|
|
name: mypy
|
|
entry: python3 -m mypy --ignore-missing-imports
|
|
language: system
|
|
types: [python]
|
|
files: ^litellm/ |