22 lines
503 B
YAML
22 lines
503 B
YAML
repos:
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
# Ruff version.
|
|
rev: v0.12.1
|
|
hooks:
|
|
# Run the linter.
|
|
- id: ruff-check
|
|
types_or: [python, pyi]
|
|
args: [--fix]
|
|
# Run the formatter.
|
|
- id: ruff-format
|
|
types_or: [python, pyi]
|
|
- repo: https://github.com/crate-ci/typos
|
|
rev: v1.33.1
|
|
hooks:
|
|
- id: typos
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: v1.16.1
|
|
hooks:
|
|
- id: mypy
|
|
files: ^src/
|