mkproj: tag pyproject, copy gitignore + pre-commit, install hooks; add pre-commit template

This commit is contained in:
root
2026-05-20 22:03:46 +02:00
parent bb5a643c71
commit 85770946b7
2 changed files with 50 additions and 1 deletions
@@ -0,0 +1,22 @@
# 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