mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-02 14:26:33 +00:00
56 lines
1.5 KiB
YAML
56 lines
1.5 KiB
YAML
---
|
|
repos:
|
|
- repo: https://github.com/python/black
|
|
rev: 22.3.0
|
|
hooks:
|
|
- id: black
|
|
- repo: https://github.com/codespell-project/codespell
|
|
rev: v2.1.0
|
|
hooks:
|
|
- id: codespell
|
|
args:
|
|
- --ignore-words-list=nd,reacher,thist,ths, ure, referenc
|
|
- repo: https://gitlab.com/PyCQA/flake8
|
|
rev: 4.0.1
|
|
hooks:
|
|
- id: flake8
|
|
args:
|
|
- '--per-file-ignores=*/__init__.py:F401 gymnasium/envs/registration.py:E704'
|
|
- --ignore=E203,W503,E741
|
|
- --max-complexity=30
|
|
- --max-line-length=456
|
|
- --show-source
|
|
- --statistics
|
|
- repo: https://github.com/PyCQA/isort
|
|
rev: 5.10.1
|
|
hooks:
|
|
- id: isort
|
|
args: ["--profile", "black"]
|
|
- repo: https://github.com/pycqa/pydocstyle
|
|
rev: 6.1.1 # pick a git hash / tag to point to
|
|
hooks:
|
|
- id: pydocstyle
|
|
exclude: ^(gymnasium/version.py)|(gymnasium/envs/)|(tests/)
|
|
args:
|
|
- --source
|
|
- --explain
|
|
- --convention=google
|
|
additional_dependencies: ["toml"]
|
|
- repo: https://github.com/asottile/pyupgrade
|
|
rev: v2.32.0
|
|
hooks:
|
|
- id: pyupgrade
|
|
# TODO: remove `--keep-runtime-typing` option
|
|
args: ["--py36-plus", "--keep-runtime-typing"]
|
|
- repo: local
|
|
hooks:
|
|
- id: pyright
|
|
name: pyright
|
|
entry: pyright
|
|
language: node
|
|
pass_filenames: false
|
|
types: [python]
|
|
additional_dependencies: ["pyright"]
|
|
args:
|
|
- --project=pyproject.toml
|