mirror of
https://github.com/run-llama/llama_deploy.git
synced 2026-06-30 21:07:54 -04:00
3a9d7fd0c0
* docs: fix buggy example code * unrelated * update mypy version and fix subclass * more typing fixes
75 lines
1.9 KiB
YAML
75 lines
1.9 KiB
YAML
---
|
|
default_language_version:
|
|
python: python3
|
|
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v5.0.0
|
|
hooks:
|
|
- id: check-byte-order-marker
|
|
- id: check-merge-conflict
|
|
- id: check-symlinks
|
|
- id: check-toml
|
|
- id: check-yaml
|
|
args: [--allow-multiple-documents]
|
|
- id: detect-private-key
|
|
- id: end-of-file-fixer
|
|
- id: mixed-line-ending
|
|
- id: trailing-whitespace
|
|
|
|
- repo: https://github.com/charliermarsh/ruff-pre-commit
|
|
rev: v0.7.3
|
|
|
|
hooks:
|
|
- id: ruff
|
|
args: [--fix, --exit-non-zero-on-fix]
|
|
- id: ruff-format
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: v1.15.0
|
|
hooks:
|
|
- id: mypy
|
|
additional_dependencies:
|
|
[
|
|
"llama_deploy[kafka,rabbitmq,redis,awssqs]",
|
|
"llama_index_core",
|
|
"types-Deprecated",
|
|
"types-PyYAML",
|
|
"types-botocore",
|
|
"types-aiobotocore",
|
|
"types-protobuf==4.24.0.4",
|
|
"types-redis",
|
|
"types-requests",
|
|
"types-setuptools",
|
|
"types-click",
|
|
]
|
|
args:
|
|
[
|
|
--disallow-untyped-defs,
|
|
--ignore-missing-imports,
|
|
--python-version=3.11,
|
|
]
|
|
exclude: ^(examples/|e2e_tests/|tests/message_queues/test_aws.py)
|
|
|
|
- repo: https://github.com/adamchainz/blacken-docs
|
|
rev: 1.16.0
|
|
hooks:
|
|
- id: blacken-docs
|
|
name: black-docs-text
|
|
alias: black
|
|
types_or: [rst, markdown, tex]
|
|
additional_dependencies: [black==23.10.1]
|
|
# Using PEP 8's line length in docs prevents excess left/right scrolling
|
|
args: [--line-length=79]
|
|
|
|
- repo: https://github.com/codespell-project/codespell
|
|
rev: v2.3.0
|
|
hooks:
|
|
- id: codespell
|
|
additional_dependencies: [tomli]
|
|
|
|
- repo: https://github.com/pappasam/toml-sort
|
|
rev: v0.23.1
|
|
hooks:
|
|
- id: toml-sort-fix
|