Files
SemesterapparatsManager/.pre-commit-config.yaml
2026-02-10 12:40:31 +01:00

14 lines
348 B
YAML

repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.8.6
hooks:
# Run the formatter
- id: ruff-format
name: ruff format
types_or: [python, pyi, jupyter]
# Run the linter with auto-fix
- id: ruff
name: ruff check
args: [--fix]
types_or: [python, pyi, jupyter]