Spaces:
Running
on
Zero
Running
on
Zero
File size: 370 Bytes
d4d21ad |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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" ]
# Run the formatter.
- id: ruff-format
types_or: [ python, pyi ]
args: [ --line-length, "120", --target-version, "py310" ]
|