logic-engine / .pre-commit-config.yaml
ghostdrive1's picture
Upload folder using huggingface_hub
116524e verified
Raw
History Blame Contribute Delete
581 Bytes
repos:
# Black - code formatting (auto-fixes)
- repo: https://github.com/psf/black
rev: 24.10.0
hooks:
- id: black
args: [--line-length=88]
language_version: python3.12
# MyPy - type checking (blocks commits on errors)
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.11.2
hooks:
- id: mypy
args: [--ignore-missing-imports, --warn-unused-configs]
additional_dependencies:
- types-requests
- types-pyyaml
files: ^ace/
language_version: python3.12