14 lines
348 B
YAML
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]
|