mirror of
https://github.com/SakanaAI/doc-to-lora.git
synced 2026-04-24 15:56:22 +02:00
24 lines
553 B
YAML
24 lines
553 B
YAML
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
|