surya/.pre-commit-config.yaml
Vik Paruchuri b07b17d816 Add linter
2025-03-26 11:49:00 -04:00

12 lines
271 B
YAML

repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.9.10
hooks:
# Run the linter.
- id: ruff
types_or: [ python, pyi ]
args: [ --fix ]
# Run the formatter.
- id: ruff-format
types_or: [ python, pyi ]