Files
translator/.pre-commit-config.yaml
2025-06-03 20:50:38 +08:00

19 lines
399 B
YAML

default_language_version:
python: python3.13
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
hooks:
- id: check-added-large-files
- id: check-yaml
- id: check-docstring-first
- repo: local
hooks:
- id: ruff
name: ruff
entry: ruff check .
language: python
types: [python]
always_run: true