doc-to-lora/.pre-commit-config.yaml

25 lines
553 B
YAML
Raw Permalink Normal View History

2026-02-27 03:47:04 +00:00
repos:
- repo: https://github.com/asottile/pyupgrade
rev: v3.20.0
hooks:
- id: pyupgrade
args:
- --py310-plus
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.11.10
hooks:
# Run the linter.
- id: ruff
types_or: [python, pyi]
args: [--fix]
# Run the formatter.
- id: ruff-format
types_or: [python, pyi]
- repo: https://github.com/PyCQA/isort
rev: 6.0.1
hooks:
- id: isort
args:
- --profile=black