lamhieu/docsifer
13
1repos:2 - repo: https://github.com/pre-commit/pre-commit-hooks3 rev: v4.6.04 hooks:5 - id: trailing-whitespace6 - id: end-of-file-fixer7 - id: check-yaml8 - id: check-added-large-files9 args: [--maxkb=1024]10 - id: check-merge-conflict11 - id: detect-private-key12 13 - repo: https://github.com/astral-sh/ruff-pre-commit14 rev: v0.6.915 hooks:16 - id: ruff17 args: [--fix]18 - id: ruff-format19 20 - repo: https://github.com/pre-commit/mirrors-mypy21 rev: v1.11.222 hooks:23 - id: mypy24 additional_dependencies:25 - pydantic>=2.626 - pydantic-settings>=2.227 args: [--config-file=pyproject.toml]28 exclude: ^tests/29 