mkproj: tag pyproject, copy gitignore + pre-commit, install hooks; add pre-commit template
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user