GPT-SoVITS/.pre-commit-config.yaml
XXXXRT666 d3176bc50e .
2025-05-01 12:16:21 +01:00

21 lines
511 B
YAML

ci:
autoupdate_schedule: monthly
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.11.7
hooks:
# Run the linter.
- id: ruff
types_or: [ python, pyi ]
args: [ --fix, --exit-zero, --quiet ]
# Run the formatter.
- id: ruff-format
types_or: [ python, pyi ]
args: [ --line-length, "120", --target-version, "py310" ]
# - repo: https://github.com/codespell-project/codespell
# rev: v2.4.1
# hooks:
# - id: codespell
# files: ^.*\.(py|md)$