|
repos: |
|
- repo: local |
|
hooks: |
|
- id: pyright |
|
name: pyright |
|
entry: pyright |
|
language: system |
|
types: [python] |
|
files: ^litellm/ |
|
- id: isort |
|
name: isort |
|
entry: isort |
|
language: system |
|
types: [python] |
|
files: litellm/.*\.py |
|
exclude: ^litellm/__init__.py$ |
|
- repo: https://github.com/psf/black |
|
rev: 24.2.0 |
|
hooks: |
|
- id: black |
|
- repo: https://github.com/pycqa/flake8 |
|
rev: 7.0.0 |
|
hooks: |
|
- id: flake8 |
|
exclude: ^litellm/tests/|^litellm/proxy/tests/ |
|
additional_dependencies: [flake8-print] |
|
files: litellm/.*\.py |
|
|
|
|
|
|
|
|
|
|
|
- repo: https://github.com/python-poetry/poetry |
|
rev: 1.8.0 |
|
hooks: |
|
- id: poetry-check |
|
- repo: local |
|
hooks: |
|
- id: check-files-match |
|
name: Check if files match |
|
entry: python3 ci_cd/check_files_match.py |
|
language: system |
|
|
|
|
|
|
|
|
|
|
|
|
|
|