# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/pre-commit/mirrors-autopep8
rev: v2.0.4
- id: autopep8
- repo: https://github.com/asottile/add-trailing-comma
rev: v3.1.0
- id: add-trailing-comma
- repo: https://github.com/asottile/reorder-python-imports
rev: v3.13.0
- id: reorder-python-imports
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.5
- id: ruff
args: [--fix, --exit-non-zero-on-fix]