23 lines
608 B
YAML
23 lines
608 B
YAML
# Sensible defaults — keeps ruff + ty fast on every commit.
|
|
repos:
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.9.0
|
|
hooks:
|
|
- id: ruff
|
|
args: [--fix]
|
|
- id: ruff-format
|
|
- repo: https://github.com/astral-sh/ty-pre-commit
|
|
rev: 0.0.1a8
|
|
hooks:
|
|
- id: ty-check
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v5.0.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: check-yaml
|
|
- id: check-toml
|
|
- id: check-added-large-files
|
|
args: ['--maxkb=1024']
|
|
- id: check-merge-conflict
|