Files
lerobot-clone/.pre-commit-config.yaml

34 lines
831 B
YAML
Raw Normal View History

exclude: ^(tests/data)
2024-02-29 12:26:35 +01:00
default_language_version:
python: python3.10
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
2024-04-16 12:10:26 +02:00
rev: v4.6.0
2024-02-29 12:26:35 +01:00
hooks:
- id: check-added-large-files
- id: debug-statements
- id: check-merge-conflict
- id: check-case-conflict
- id: check-yaml
- id: check-toml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/asottile/pyupgrade
2024-03-25 17:29:35 +01:00
rev: v3.15.2
2024-02-29 12:26:35 +01:00
hooks:
- id: pyupgrade
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.3
2024-02-29 12:26:35 +01:00
hooks:
- id: ruff
args: [--fix]
- id: ruff-format
- repo: https://github.com/python-poetry/poetry
rev: 1.8.0
hooks:
- id: poetry-check
- id: poetry-lock
args:
- "--check"
- "--no-update"