mirror of
https://github.com/NousResearch/atropos.git
synced 2026-04-19 12:57:58 +00:00
- Update pre-commit hooks: v5.0.0, black 25.1.0, isort 6.0.1, flake8 7.2.0 - Fix isort import ordering in lean_proof_env.py - Fix flake8 F824 false positive in spatial_env.py with noqa comment
25 lines
595 B
YAML
25 lines
595 B
YAML
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v5.0.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: check-yaml
|
|
- id: check-added-large-files
|
|
|
|
- repo: https://github.com/psf/black
|
|
rev: 25.1.0
|
|
hooks:
|
|
- id: black
|
|
|
|
- repo: https://github.com/pycqa/isort
|
|
rev: 6.0.1
|
|
hooks:
|
|
- id: isort
|
|
args: ["--profile", "black", "--filter-files"]
|
|
|
|
- repo: https://github.com/pycqa/flake8
|
|
rev: 7.2.0
|
|
hooks:
|
|
- id: flake8
|
|
args: ["--max-line-length=120", "--extend-ignore=E203,W503"]
|