mirror of
https://github.com/rendercv/rendercv.git
synced 2026-04-17 13:33:53 -04:00
Bump black (26.3.1), ruff (0.15.7), ty (0.0.24), prek (0.3.6), typer (0.24.1), and codespell (v2.4.2). Add ty:ignore comments and type annotations to satisfy stricter checks in ty 0.0.24. Make skill zip generation reproducible with a fixed timestamp.
28 lines
748 B
YAML
28 lines
748 B
YAML
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v6.0.0
|
|
hooks:
|
|
- id: check-added-large-files
|
|
- id: check-toml
|
|
- repo: https://github.com/codespell-project/codespell
|
|
rev: v2.4.2
|
|
hooks:
|
|
- id: codespell
|
|
args:
|
|
- --skip=src/rendercv/schema/models/locale/other_locales/*
|
|
- --exclude-file=schema.json
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.15.7
|
|
hooks:
|
|
- id: ruff-check
|
|
- id: ruff-format
|
|
- repo: local
|
|
hooks:
|
|
- id: ty-check
|
|
name: ty-check
|
|
language: python
|
|
entry: ty check src tests
|
|
pass_filenames: false
|
|
args: [--python=.venv/]
|
|
additional_dependencies: ["ty>=0.0.24"]
|